vue example
时间: 2023-10-29 21:00:14 浏览: 156
您可以按照以下步骤在Vue项目中使用echarts:
1. 首先,使用以下命令安装echarts:
```shell
npm install echarts -S
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install echarts -S
```
2. 在main.js文件中引入echarts并将其作为Vue的原型属性:
```javascript
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
```
3. 在您的Vue组件中,您可以使用以下代码来绘制echarts图表:
```html
<template>
<div id="myChart" :style="{width: '300px', height: '300px'}"></div>
</template>
<script>
export default {
mounted() {
this.drawLine();
},
methods: {
drawLine() {
let myChart = this.$echarts.init(document.getElementById('myChart'));
myChart.setOption({
title: {
text: '在Vue中使用echarts'
},
tooltip: {},
xAxis: {
data: ["湖人队", "火箭队", "热火队", "勇士队", "篮网队", "快船队"]
},
yAxis: {},
series: [{
name: '总比分',
type: 'bar',
data: [50, 20, 36, 10, 10, 20]
}]
});
}
}
}
</script>
```
请注意,在以上代码中,`mounted()`生命周期钩子函数用于在组件挂载后调用`drawLine()`方法,这将在指定的DOM元素上初始化echarts实例并绘制图表。
以上是在Vue项目中使用echarts的示例代码。希望能对您有所帮助!
阅读全文