一、安装echarts
- 使用npm安装echarts
npm install echarts -S
二、引入并使用
1、全局引入
在中引入echarts
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
创建
<template>
<div id="myChart" :style="{
width: '300px', height: '300px'}"></div>
</template>
<script>
export default {
name: 'Echarts',
data () {
return {
msg: 'Welcome use Echarts'
}
},
mounted