方法:1、使用「npm install echarts vue-echarts」語句安裝vue-echarts;2、在「main.js」檔案中引入vue-echarts模組;3、在需要的介面中,根據需要加入echarts代碼即可。
本教學操作環境:windows7系統、vue2.9.6版,DELL G3電腦。
vuejs載入echarts
npm install echarts vue-echarts
main.js
import ECharts from 'vue-echarts' import 'echarts/lib/chart/line' Vue.component('chart', ECharts)
HelloWorld.vue
<template> <p class="hello"> <chart ref="chart1" :options="orgOptions" :auto-resize="true"></chart> </p> </template> <script> export default { name: 'HelloWorld', data () { return { orgOptions: {}, } }, mounted() { this.orgOptions = { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value' }, series: [{ data: [820, 932, 901, 934, 1290, 1330, 1320], type: 'line', smooth: true }] } } } </script>
到這裡就結束了。試過打包了,沒報錯~
相關推薦:《vue.js教學》
以上是vuejs怎麼載入echarts的詳細內容。更多資訊請關注PHP中文網其他相關文章!