config.ts 354 B

12345678910111213141516
  1. import type { ModuleConfig } from "/@/cool";
  2. import VueECharts from "vue-echarts";
  3. export default (): ModuleConfig => {
  4. return {
  5. order: 100,
  6. label: "ECharts 图表",
  7. description: "echarts、vue-echarts 配置",
  8. author: "COOL",
  9. version: "1.0.0",
  10. updateTime: "2024-07-22",
  11. install(app) {
  12. app.component("v-chart", VueECharts);
  13. }
  14. };
  15. };