2.3.1 • Published 6 years ago
simple-vue2-datetimepicker v2.3.1
SIMPLE VUE 2 DATE TIME PICKER
Vue.js component for easy date and time picking.
Installation
# npm
npm i simple-vue2-datetimepicker
# yarn
yarn add simple-vue2-datetimepicker
# unpkg
https://unpkg.com/simple-vue2-datetimepicker
Usage
Component
<template>
<div id="app">
<DateTimePicker v-model="myDate" :options="options"></DateTimePicker>
</div>
</template>
<script>
import DateTimePicker from "simple-vue2-datetimepicker";
export default {
name: "App",
components: {
DateTimePicker
},
data() {
return {
myDate: new Date(),
options: {
// defaults
timeFormat: {
locale: "en-US",
weekday: "short",
year: "numeric",
month: "short",
day: "numeric",
hour: "numeric",
minute: "numeric",
hour12: true
},
display: {
maxWidth: 400
}
}
};
}
};
</script>
Global
import DateTimePicker from "simple-vue2-datetimepicker";
Vue.component('datetimepicker', DateTimePicker);
Plugin
import DateTimePicker from "simple-vue2-datetimepicker";
Vue.use(DateTimePicker);
Development
- clone this repository
- install dependencies
- start the webpack development server with
yarn serve
ornpm run serve
- go to
http://localhost:8080
in your browser
2.3.1
6 years ago
2.3.0
6 years ago
2.2.9
6 years ago
2.2.7
6 years ago
2.2.6
6 years ago
2.2.5
6 years ago
2.2.4
6 years ago
2.2.3
6 years ago
2.2.2
6 years ago
2.2.1
6 years ago
2.2.0
6 years ago
2.1.1
6 years ago
2.1.0
6 years ago
2.0.0
6 years ago
0.7.0
6 years ago
0.6.4
6 years ago
0.6.3
6 years ago
0.6.2
6 years ago
0.6.1
6 years ago
0.6.0
6 years ago
0.5.0
6 years ago
0.4.0
7 years ago
0.3.0
7 years ago
0.2.0
7 years ago
0.1.0
7 years ago