关于ele-calendar defaultValue赋值无效@TOC
初次设置defaultValue是有效的
初次设置defaultValue是有效的,但第二次或第N次设置是无效的,默认值都是上次的选中值,若一个页面使用2次或以上控件
解决方案
重新渲染组件!用的就是一般的key触发watch重新渲染
<ele-calendar
:render-content="renderContent"
:data="datedef"
:prop="prop"
:border="true"
@pick="pick"
@date-change="getMonth"
:defaultValue="value"
:id="'calendar'+item.id"
:key="menuKey"
>
watch:{
menuTree(){
++this.menuKey
}
}