vue之el-date-picker使用

场景:

       设置默认值之后,重新选择日期,页面赋值不会生效,但是通过打印发现已经修改了,只是页面没有重新渲染。

解决方法:

  •   不生效的处理方法:this.queryParams.ddrq = time
  •   生效的处理方法:
    • this.$set(对象, "对象的属性", 值);     如:this.$set(this.queryParams, "ddrq", time);
    • 需要在data中初始化定义这个对象的属性,不然不生效。

如何设置只读:

:clearable="false"   默认为true,可以清除,设置false,表示不可清除
:editable="false"    设置不可编辑

你可能感兴趣的:(总结,el-date-picker,vue)