avue 时间选择器限制时间范围
时间选择器限制时间范围,需配置pickerOptions对象中的shortcuts,禁用日期通过disabledDate设置,传入函数
·
基本单位由type属性指定。快捷选项需配置
pickerOptions
对象中的shortcuts
,禁用日期通过disabledDate
设置,传入函数
<avue-form v-model="form" :option="option"></avue-form>
<script>
export default {
data() {
return {
form:{},
option:{
column: [{
label: "禁止日期",
prop: "date",
type: "date",
pickerOptions: {
disabledDate(time) {
return time.getTime() < Date.now();
},
}
}]
},
};
}
}
</script>
运行效果:
更多推荐
已为社区贡献6条内容
所有评论(0)