mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2026-02-06 16:45:34 +00:00
41 lines
521 B
TypeScript
41 lines
521 B
TypeScript
import Crud from "../crud";
|
|
|
|
export default {
|
|
modules: [
|
|
// 基础模块
|
|
"base",
|
|
// 文件上传
|
|
{
|
|
name: "upload",
|
|
options: {
|
|
icon: "el-icon-picture",
|
|
text: "选择图片",
|
|
},
|
|
},
|
|
{
|
|
name: "crud",
|
|
value: Crud,
|
|
options: {
|
|
crud: {
|
|
dict: {
|
|
sort: {
|
|
prop: "order",
|
|
order: "sort",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
// 客服聊天
|
|
"chat",
|
|
// 任务管理
|
|
"task",
|
|
// 复制指令
|
|
"copy",
|
|
// 示例页
|
|
"demo",
|
|
// 主题切换
|
|
"theme",
|
|
],
|
|
};
|