image.png

这里添加了ref="graph",当我访问this.$refs.graph.redraw()时会抛出异常:this.$ref.graph.redraw is not a function

2020-12-08 21:02创建
共1个回答
UJ
游客uJLTPs

你需要这样使用:

this.$refs.graph.chart.redraw()

this.$refs.graph这是返回当前组件。 this.$refs.graph.chart返回Morris对象的实例。