本文介绍: 这样,我们就可以在 Vue 中使用 Echarts 图表了。当父组件渲染时,会传递配置项到子组件中,然后子组件会创建一个 Echarts 实例并渲染图表。首先,在 Vue 项目中安装 Echarts 库。
要将 Echarts 封装成 Vue 组件,可以使用以下步骤:
首先,在 Vue 项目中安装 Echarts 库。可以通过 npm 安装:
npm install echarts --save
import * as echarts from 'echarts'
Vue.prototype.$echarts = echarts
创建一个 Vue 组件,为了方便起见,我们可以把 Echarts 的图表和配置项作为组件的 props:
<template>
<div class="chart" ref="chart" :style="{ width: '100%', height: '400px' }"></div>
</template>
<script>
export default {
name: "Chart",
data() {
return {
chart: null,
};
},
props: {
// 传配置项option
option: {
type: Object,
default() {
return {};
},
},
},
watch: {
option() {
if (this.chart) {
this.chart.setOption(this.option); // 设置对应配置项
}
}
},
mounted() {
this.chart = this.$echarts.init(this.$refs.chart); // 初始化echarts
this.chart.setOption(this.option); // 设置对应配置项
// 当窗口大小改变 echarts重置大小
window.addEventListener("resize", () => {
this.chart.resize();
});
},
};
</script>
在父组件中使用新创建的 Echarts 组件,直接写在方法里:
<template>
<div>
<chart class="chart" :option="earningOption" />
</div>
</template>
<script>
import Chart from "../echarts/chart.vue";
export default {
components: {
Chart,
},
data() {
return {
earningOption: {
// 在这里放置 Echarts 的配置项
},
};
},
created() {
this.getCountData();
},
methods: {
getCountData() {
this.earningOption = {
// 在这里放置 Echarts 的配置项
};
},
},
};
</script>
这样,我们就可以在 Vue 中使用 Echarts 图表了。当父组件渲染时,会传递配置项到子组件中,然后子组件会创建一个 Echarts 实例并渲染图表。
原文地址:https://blog.csdn.net/m0_62082930/article/details/129841150
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_40132.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。