vue3中使用Apache ECharts
在Vue 3中使用Apache ECharts,首先需要安装ECharts库:
npm install echarts --save
然后,在Vue组件中引入并使用ECharts:
<template>
<div ref="echartsRef" style="width: 600px; height: 400px;"></div>
</template>
<script setup>
import { onMounted, ref } from 'vue';
import * as echarts from 'echarts';
const echartsRef = ref(null);
onMounted(() => {
const chart = echarts.init(echartsRef.value);
const option = {
// ECharts 配置项
title: {
text: 'ECharts 示例'
},
tooltip: {},
xAxis: {
data: ['A', 'B', 'C', 'D', 'E', 'F']
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
};
chart.setOption(option);
});
</script>
<style>
/* 样式内容 */
</style>
在上述代码中,我们使用了Vue 3的 <script setup>
语法糖,它可以让我们的代码更加简洁。我们通过 ref
创建了一个DOM元素的引用,并在组件挂载后(onMounted
生命周期钩子中),使用ECharts的 init
方法来初始化图表,并通过 setOption
方法设置图表的配置项。
评论已关闭