wangzhibo
2026-07-16 b57020623cf0c946706573bf102e548c3a544423
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { type ModuleConfig } from '/@/cool';
 
export default (): ModuleConfig => {
    return {
        enable: true,
        components: [
            () => import('./components/import-btn.vue'),
            () => import('./components/export-btn')
        ],
 
        label: 'Excel',
        description: '表格的导入、导出组件',
        author: 'COOL',
        version: '1.0.1',
        updateTime: '2024-03-28',
        demo: [
            {
                name: '基础用法',
                component: () => import('./demo/base.vue')
            }
        ]
    };
};