vue3关于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 = {
title: {
text: 'ECharts 示例'
},
tooltip: {},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
};
chart.setOption(option);
});
</script>
<style>
/* 样式内容 */
</style>
这段代码展示了如何在Vue 3中使用ECharts。首先,我们引入了必要的ECharts库,并通过模板引用获取了一个DOM元素,然后在onMounted
生命周期钩子中初始化了ECharts实例,并配置了一个简单的柱状图选项。
评论已关闭