jinzhe/vue-calendar

你好,麻烦问下  display 如何动态的设置时间

vincent-cong opened this issue · 2 comments

display 如何动态的设置时间

calendar.vue中,修改watch,添加对value的监听(this.init()不知道有什么影响)

watch:{
events(){
this.render(this.year,this.month)
},
value:function(){
this.init();
}
},

已增加