mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2026-03-24 06:22:26 +00:00
45 lines
608 B
TypeScript
45 lines
608 B
TypeScript
import Crud from "cl-admin-crud-vue3";
|
|
import "cl-admin-crud-vue3/dist/index.css";
|
|
|
|
export default {
|
|
modules: [
|
|
// 基础模块
|
|
"base",
|
|
// 文件上传
|
|
{
|
|
name: "upload",
|
|
options: {
|
|
icon: "el-icon-picture",
|
|
text: ""
|
|
}
|
|
},
|
|
// Excel 导出模块
|
|
"export",
|
|
// crud 模块
|
|
{
|
|
name: "crud",
|
|
value: Crud,
|
|
options: {
|
|
crud: {
|
|
dict: {
|
|
sort: {
|
|
prop: "order",
|
|
order: "sort"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
// 客服聊天
|
|
"chat",
|
|
// 任务管理
|
|
"task",
|
|
// 复制指令
|
|
"copy",
|
|
// 示例页
|
|
"demo",
|
|
// 主题切换
|
|
"theme"
|
|
]
|
|
};
|