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
24
import { type ModuleConfig } from '/@/cool';
 
export default (): ModuleConfig => {
    return {
        enable: true,
        components: [() => import('./components/group.vue'), () => import('./components/head.vue')],
 
        label: '视图组件',
        description: '左右侧布局、顶部详情等',
        author: 'COOL',
        version: '1.0.4',
        updateTime: '2024-03-25',
        demo: [
            {
                name: '左右侧布局',
                component: () => import('./demo/group.vue')
            },
            {
                name: '顶部详情',
                component: () => import('./demo/head.vue')
            }
        ]
    };
};