Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
vue-bootstrap-datetimepicker
Advanced tools
Vue.js v2.x component for eonasdan-bootstrap-datetimepicker
# npm
npm install vue-bootstrap-datetimepicker --save
# Yarn
yarn add vue-bootstrap-datetimepicker
v-model
value
<template>
<div>
<date-picker v-model="date"></date-picker>
</div>
</template>
<script>
// Import required dependencies
import moment from 'moment';
import jQuery from "jquery";
import 'bootstrap';
import 'bootstrap/dist/css/bootstrap.css';
// Import this component
import datePicker from 'vue-bootstrap-datetimepicker';
// Import date picker css
import 'eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.css';
export default {
data () {
return {
date: new Date(),
}
},
components: {
datePicker
}
}
</script>
import Vue from 'vue';
import {DatetimePickerPlugin} from 'vue-bootstrap-datetimepicker';
import 'eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.css';
Vue.use(DatetimePickerPlugin);
This will register a global component <date-picker>
The component accepts these props:
Attribute | Type | Default | Description |
---|---|---|---|
v-model / value | String / Date Object / moment / null | null | Set or Get date-picker value |
config | Object | {} | Datetime picker configuration options |
placeholder | String | '' | Set placeholder on input |
input-class | String / Object | '' | Add CSS class to input |
name | String | datetime | Set input field name |
required | Boolean | false | Make input field required |
read-only | Boolean | false | Make input field read-only |
disabled | Boolean | false | Make input field disabled |
wrap | Boolean | false | Set this to true when wrapped in 'input-group' |
<!-- Date-picker dependency-->
<script src="jquery.min.js"></script>
<script src="moment.min.js"></script>
<script src="bootstrap.min.js"></script>
<link href="bootstrap.min.css" rel="stylesheet">
<!-- Date-picker itself -->
<script src="bootstrap-datetimepicker.min.js"></script>
<link href="bootstrap-datetimepicker.min.css" rel="stylesheet">
<!-- Vue js -->
<script src="vue.min.js"></script>
<!-- Lastly add this package -->
<script src="https://unpkg.com/vue-bootstrap-datetimepicker"></script>
<main id="app">
<date-picker v-model="date"></date-picker>
</main>
<script>
//Initialize as global component
Vue.component('date-picker', VueBootstrapDatetimePicker.default);
new Vue({
el: '#app',
data: {
date: null
},
});
</script>
npm install
npm run dev
http://localhost:8080
Changelog for each release can found here
MIT License
Vue.use()
FAQs
Vue.js date time picker component for bootstrap 4
The npm package vue-bootstrap-datetimepicker receives a total of 7,499 weekly downloads. As such, vue-bootstrap-datetimepicker popularity was classified as popular.
We found that vue-bootstrap-datetimepicker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.