在vue中引入echart的方法:1.新建vue.js項目;2.使用npm導入echart依賴包;3.使用import或require方法引入echart;
具體步驟如下:
1.首先,在vue-cli中創建一個vue.js項目;
vue create project-name
2.vue.js項目創建好后,在項目中使用npm命令導入echart依賴包;
npm install echarts --save
3.最后,echart依賴包導入后,在項目中使用以下方法引入echart即可;
1)使用import方法全局引入echart
import echarts from 'echarts'
2)使用require方法按需引入echart
#引入基本模板
let echarts = require('echarts/lib/echarts')
#引入柱狀圖組件
require('echarts/lib/chart/bar')
#引入提示框
require('echarts/lib/component/tooltip')
#引入title組件
require('echarts/lib/component/title')