Bootstrap

vue中如何使用echarts

vue中如何使用echarts

1、安装echarts依赖
npm install echarts -S
或者使用淘宝的镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install echarts -S

创建图表
首先需要全局引入
在main.js中

```bash
// 引入echarts
import echarts from 'echarts'
Vue.prototype.$echarts = echarts

```bash/2、在Echarts.vue中
<template>
  <div>
    <div id="myChart" style="width:700px;height:500px"></div>
  </div>
</template>

<script>
export default {
   
  data() {
   
    return 
;