2025-03-05 19:24:47 +00:00
|
|
|
import { IFrameView } from "/@/vben/layouts";
|
2025-03-06 21:11:07 +08:00
|
|
|
import { useSettingStore } from "/@/store/modules/settings";
|
2025-03-10 15:45:24 +08:00
|
|
|
import { computed } from "vue";
|
2025-03-05 19:24:47 +00:00
|
|
|
|
|
|
|
|
export const aboutResource = [
|
|
|
|
|
{
|
2025-03-06 21:11:07 +08:00
|
|
|
title: "文档",
|
2025-03-05 19:24:47 +00:00
|
|
|
name: "about",
|
|
|
|
|
path: "/about",
|
|
|
|
|
redirect: "/about/doc",
|
|
|
|
|
meta: {
|
|
|
|
|
icon: "lucide:copyright",
|
2025-03-06 21:11:07 +08:00
|
|
|
order: 9999,
|
|
|
|
|
show: () => {
|
|
|
|
|
const settingStore = useSettingStore();
|
|
|
|
|
return !settingStore.isComm;
|
|
|
|
|
}
|
2025-03-05 19:24:47 +00:00
|
|
|
},
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
title: "文档",
|
|
|
|
|
name: "document",
|
|
|
|
|
path: "/about/doc",
|
|
|
|
|
component: IFrameView,
|
|
|
|
|
meta: {
|
|
|
|
|
icon: "lucide:book-open-text",
|
2025-03-06 21:11:07 +08:00
|
|
|
link: "https://certd.docmirror.cn",
|
2025-03-05 19:24:47 +00:00
|
|
|
title: "文档"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Github",
|
|
|
|
|
path: "/about/github",
|
|
|
|
|
component: IFrameView,
|
|
|
|
|
meta: {
|
|
|
|
|
icon: "mdi:github",
|
2025-03-06 21:11:07 +08:00
|
|
|
link: "https://github.com/certd/certd",
|
2025-03-05 19:24:47 +00:00
|
|
|
title: "Github"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Gitee",
|
|
|
|
|
path: "/about/gitee",
|
|
|
|
|
component: IFrameView,
|
|
|
|
|
meta: {
|
|
|
|
|
icon: "ion:logo-octocat",
|
2025-03-06 21:11:07 +08:00
|
|
|
link: "https://gitee.com/certd/certd",
|
2025-03-05 19:24:47 +00:00
|
|
|
title: "Gite"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export default aboutResource;
|