由于ElementUI
时间选择器,日期选择器,时间日期选择器
点击清除按钮时,v-model
所绑定的属性值会变成null
,所以当使用 ElementUI时间选择器,日期选择器,时间日期选择器
时,v-model
默认值应设置null
ElementUI 中没有内置清除按钮的回调函数。因此要解决这个 bug,我们可以使用 change 事件的回调函数为 value 重新赋值,即:
change(){
if (!this.value) this.value = [];
}
或者添加监听,值为 null 时,赋值为
watch: {
'form.value'(newVal) {
if (!newVal) this.form.value = [];
}
}
element ui 组件踩坑记录--后台管理系统-最全
https://blog.csdn.net/weixin_47988564/article/details/112584828