1.安裝echarts
npm install echarts --save
2.main.js
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
3.使用
<div class="bar" id="chart1"></div> <script> import 'echarts/lib/chart/bar' export default { data () { return { items2: { title: { text: 'ECharts 入門示例' }, tooltip: {}, xAxis: { data: ['襯衫', '羊毛衫', '雪紡衫', '褲子', '高跟鞋', '襪子'] }, yAxis: {}, series: [{ name: '銷量', type: 'bar', data: [5, 20, 36, 10, 10, 20] }] } } }, methods: { init () { this.chart1 = this.$echarts.init(document.getElementById("chart1")); this.chart1.setOption(this.items2); } }, mounted () { this.init() } } </script>