Files
certd/packages/ui/certd-client/src/router/source/modules/about.tsx
T

25 lines
613 B
TypeScript
Raw Normal View History

import { IFrameView } from "/@/vben/layouts";
2025-04-12 23:59:03 +08:00
import { useSettingStore } from "/@/store/settings";
2025-03-10 15:45:24 +08:00
import { computed } from "vue";
2025-03-10 16:06:40 +08:00
import TutorialButton from "/@/components/tutorial/index.vue";
export const aboutResource = [
{
2025-03-06 21:11:07 +08:00
title: "文档",
2025-03-10 16:06:40 +08:00
name: "document",
path: "/about/doc",
component: IFrameView,
meta: {
2025-03-10 16:06:40 +08:00
icon: "lucide:book-open-text",
link: "https://certd.docmirror.cn",
title: "文档",
2025-03-06 21:11:07 +08:00
order: 9999,
show: () => {
const settingStore = useSettingStore();
return !settingStore.isComm;
}
2025-03-10 16:06:40 +08:00
}
}
];
export default aboutResource;