2016-05-30 70 views

回答

3

使用Vue公司的nextTick注入圖表,這將保證DOM準備進行更新:

ready: function() { 
    this.$nextTick(function() { 
     this.chart = new Highcharts.Chart(this.opts); 
    }); 
} 

http://jsfiddle.net/crabbly/hje7bqrn/