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>
本文来自博客园,作者:zjxgdq,转载请注明原文链接:https://www.cnblogs.com/zjxzhj/p/16174545.html