vue3引入echarts并使用详细步骤代码
时间: 2023-08-19 11:21:04 浏览: 113
好的,以下是Vue3引入echarts并使用的详细步骤代码:
1. 安装echarts:
```
npm install echarts --save
```
2. 在Vue3组件中引入echarts:
```javascript
import echarts from 'echarts'
```
3. 在Vue3组件中创建echarts实例:
```javascript
data() {
return {
chart: null
}
},
mounted() {
this.chart = echarts.init(this.$refs.chart)
},
```
4. 在Vue3组件中定义echarts配置项:
```javascript
const option = {
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
legend: {
data:['销量']
},
xAxis: {
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
}
```
5. 在Vue3组件中渲染echarts图表:
```javascript
this.chart.setOption(option)
```
6. 在Vue3组件中渲染echarts容器:
```html
<div ref="chart" style="width: 100%; height: 500px;"></div>
```
以上就是Vue3引入echarts并使用的详细步骤代码。
阅读全文