12345678910111213141516 |
- import type { ModuleConfig } from "/@/cool";
- import VueECharts from "vue-echarts";
- export default (): ModuleConfig => {
- return {
- order: 100,
- label: "ECharts 图表",
- description: "echarts、vue-echarts 配置",
- author: "COOL",
- version: "1.0.0",
- updateTime: "2024-07-22",
- install(app) {
- app.component("v-chart", VueECharts);
- }
- };
- };
|