vue中e-charts的基本使用

1.安裝e-charts項目依賴vue

npm install echarts --savenpm

或者echarts

npm install echarts -Sdom

2.引入項目中this

全局引入(main.js)spa

import echarts from 'echarts'prototype

Vue.prototype.$echarts = echartscode

這種方法是直接綁定在vue實例上,因此在項目中任何頁面,直接 this.$echarts 便可xml

局部引入(須要的頁面進行引入)token

import echarts from 'echarts'

 

3.初始化echarts

首先在你須要echarts的頁面中得建立一個dom元素

<div id="myCharts" ref="myCharts"></div>

其次,在mounted中初始化echarts( 不能寫在created中)

1.const myCharts = this.$echarts.init(this.$refs.myCharts);
2.let options = {
xxx
}
3.
myCharts.setOption(options);
相關文章
相關標籤/搜索