vue2 Echarts基础版

<template>
  <div class="Echarts">
    <div id="mains" style="width: 600px;height:400px;"></div>
  </div>
</template>

<script>
import * as echarts from 'echarts'
export default {
  name: 'HelloWorld',
  methods: {
    myEcharts () {
      const myChart = echarts.init(document.getElementById('mains'))
      const option = {
        title: {
          text: 'ECharts 入门示例'
        },
        tooltip: {},
        legend: {
          data: ['销量']
        },
        xAxis: {
          data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
        },
        yAxis: {},
        series: [{
          name: '销量',
          type: 'bar',
          data: [5, 20, 36, 10, 10, 20]
        }]
      }

      myChart.setOption(option)
    }
  },
  mounted () {
    this.myEcharts()
  }
}
</script>

<style>
.Echarts{
  border: 1px solid red;
}
</style>

  

posted @ 2022-04-21 16:01  zjxgdq  阅读(52)  评论(0编辑  收藏  举报