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
import { type ModuleConfig } from '/@/cool';
 
export default (): ModuleConfig => {
    return {
        enable: true,
        components: [() => import('./components/wang.vue')],
 
        label: 'Wang 编辑器',
        description: '基于 wangEditor 封装的富文本编辑器',
        author: 'COOL',
        version: '1.0.0',
        updateTime: '2024-02-01',
        demo: [
            {
                name: '基础用法',
                component: () => import('./demo/base.vue')
            }
        ],
        doc: 'https://www.wangeditor.com'
    };
};