这篇文章主要为大家详细介绍了分析vue移动端日期选择组件,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
先给大家分享一下源码:https://github.com/lx544690189/vue-mobile-calendar
【q1010.com温馨提示:图片暂缺】
代码如下:
# install dependencies
npm install
# build for production with minification
npm run build
代码如下:
npm install vue-mobile-calendar
or:(from the dist folder)
代码如下:
<script src="vue-mobile-calendar.js" type="text/javascript"></script>
代码如下:
import Vue from 'vue'
import Calendar from 'vue-mobile-calendar'
Vue.use(Calendar)
代码如下:
<calendar
v-model="calendarShow"
:defaultDate="defaultDate"
@change="handelChange">
</calendar>
option | description | type | default |
---|---|---|---|
v-model | show/hide the calendar | Boolean | false |
format | format date | String | "yyyy-MM-dd" |
defaultDate | default selected date | Date | new Date() |
minDate | optional minimum date | Date | null |
maxDate | optional maximum date | Date | null |
closeByClickmask | close by mask | Boolean | true |
month | text of month | Array | ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"] |
week | text of day | Array | ["周一", "周二", "周三", "周四", "周五", "周六", "周日"] |
Events
event name | description | parameter of callback |
---|---|---|
change | when date change | (date,formatDate) |
framework7
mint-ui
本文来自:http://www.q1010.com/184/4597-0.html
注:关于分析vue移动端日期选择组件的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:vue.js
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。