1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| import { type ModuleConfig } from '/@/cool';
| import VueECharts from 'vue-echarts';
|
| export default (): ModuleConfig => {
| return {
| enable: true,
| order: 99,
| install(app) {
| app.component('v-chart', VueECharts);
| import('echarts');
| },
|
| label: 'ECharts 图表',
| description: 'echarts、vue-echarts 配置',
| author: 'COOL',
| version: '1.0.0',
| updateTime: '2024-07-22',
| doc: 'https://echarts.apache.org/examples/zh/index.html'
| };
| };
|
|