提交 39c8ec87 编写于 作者: 雪洛's avatar 雪洛

fix: $data使用下标访问其中属性

上级 15096a0a
...@@ -59,8 +59,9 @@ export default { ...@@ -59,8 +59,9 @@ export default {
}, },
created () { }, created () { },
onReady () { onReady () {
this.weeks = this.$data.$calendar.getWeeks() const calendar = this.$data['$calendar'] as Calendar
this.timeData = this.$data.$calendar.getDateInfo() this.weeks = calendar.getWeeks()
this.timeData = calendar.getDateInfo()
// 绘制日历头部 // 绘制日历头部
this.drawHeader() this.drawHeader()
this.drawWeek(this.weeks, '') this.drawWeek(this.weeks, '')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册