vue-datetime-selector
v0.1.3
Published
A Vue.js component implementing the datetime picker control using the bootstrap style.
Downloads
5
Maintainers
Readme
vue-datetime
A Vue.js component implementing the datetime picker control using the bootstrap style. 精简轻量的vue日期时间选择控件
安装
npm install vue-datetime-selector -s
# 如果您使用yarn安装
yarn add vue-datetime-selector
使用
<template>
<datetime format="YYYY年MM月DD日 H时i分" v-model="defaultValue"></datetime>
</template>
<script>
import datetime from 'vue-datetime-selector';
export default {
data(){
return{
defaultValue:null
}
}
}
</script>
格式化
YYYY/MM/DD
YYYY/MM/DD h:i:s //12小时制
YYYY/MM/DD H:i:s //24小时制
YYYY年MM月DD日
YYYY年MM月DD日 H时i分s秒