美文网首页
vue-cli使用echarts

vue-cli使用echarts

作者: 月光在心中 | 来源:发表于2017-08-10 09:37 被阅读34次

安装
npm install -g cnpm --registry=https://registry.npm.taobao.org

使用
cnpm install echarts -S

main.js

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

Hello.vue

<div id="myChart" :style="{width: '300px', height: '300px'}"></div>
export default {
  name: 'hello',
  data () {
    return {
      msg: 'Welcome to Your Vue.js App'
    }
  },
  mounted(){
    this.drawLine();
  },
  methods: {
    drawLine(){
        // 基于准备好的dom,初始化echarts实例
        let myChart = this.$echarts.init(document.getElementById('myChart'))
        // 绘制图表
        myChart.setOption({
            title: { text: '在Vue中使用echarts' },
            tooltip: {},
            xAxis: {
                data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
            },
            yAxis: {},
            series: [{
                name: '销量',
                type: 'bar',
                data: [5, 20, 36, 10, 10, 20]
            }]
        });
    }
  }
}

相关文章

  • 2019-05-22

    在vue-cli项目中使用echarts 这个示例使用vue-cli脚手架搭建 安装echarts依赖 npm...

  • echarts的两种使用方式

    在Vue中使用echarts的两种方式 npm webpack vue-cli echarts vue.js 准备...

  • 2018-06-21

    在vue-cli项目中使用echarts https://www.cnblogs.com/Smiled/p/768...

  • 在Vue中使用Echarts图表

    在vue-cli项目中使用echarts[https://www.cnblogs.com/Smiled/p/768...

  • vue-cli开发记录

    1.项目架构 项目使用到的技术vue-cli + vue-echarts + sass + axios 2.项目搭...

  • vue-cli使用echarts

    安装npm install -g cnpm --registry=https://registry.npm.tao...

  • vue-cli 使用 echarts

    npm 下载 main.js 导入 app.vue 使用

  • vue-cli中使用echarts

    安装echarts 依赖 全局引入 main.js中 在所需页面使用 如hello.vue 注意:一定要给使用的e...

  • Vue-cli中使用echarts

    npm包选择: 推荐使用echarts,不推荐使用vue-echarts(更新慢等问题)。 使用方式: 推荐使用v...

  • vue2.0项目中引入echarts

    在vue-cli搭建的项目中该如何引入echarts图表呢? 1.首先npm安装echarts npm insta...

网友评论

      本文标题:vue-cli使用echarts

      本文链接:https://www.haomeiwen.com/subject/irwcrxtx.html