mirror of
https://github.com/certd/certd.git
synced 2026-06-24 03:07:31 +08:00
040b2e8a53
refactor: 1.11.7 refactor: 1.11.6 refactor: 1.11.5 refactor: ui interface refactor: ui interface refactor: ui interface refactor: 1.11.4 fix: 多级表头列设置不显示bug fix: tabs,修复连续触发两次查询的bug https://github.com/fast-crud/fast-crud/issues/161 perf: 文本复制组件优化
31 lines
588 B
TypeScript
31 lines
588 B
TypeScript
export const uiResources = [
|
|
{
|
|
title: "UI示例",
|
|
name: "ui",
|
|
path: "/ui",
|
|
redirect: "/ui/form",
|
|
meta: {
|
|
icon: "ion:apps-sharp"
|
|
},
|
|
children: [
|
|
{
|
|
title: "表单组件",
|
|
name: "UIForm",
|
|
path: "/ui/form",
|
|
redirect: "/ui/form/input",
|
|
meta: {
|
|
icon: "ion:disc-outline"
|
|
},
|
|
children: [
|
|
{
|
|
title: "input",
|
|
name: "UIFormInput",
|
|
path: "/ui/form/input",
|
|
component: "/ui/form/input/index.vue"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
];
|