你好,麻烦问下 display 如何动态的设置时间
vincent-cong opened this issue · 2 comments
vincent-cong commented
display 如何动态的设置时间
wjz473 commented
calendar.vue中,修改watch,添加对value的监听(this.init()不知道有什么影响)
watch:{
events(){
this.render(this.year,this.month)
},
value:function(){
this.init();
}
},
jinzhe commented
已增加