mirror of
https://github.com/certd/certd.git
synced 2026-05-16 05:07:32 +08:00
27 lines
687 B
TypeScript
27 lines
687 B
TypeScript
import { IFrameView } from "/@/vben/layouts";
|
|
import { useSettingStore } from "/@/store/settings";
|
|
import { computed } from "vue";
|
|
import TutorialButton from "/@/components/tutorial/index.vue";
|
|
import i18n from "/@/locales/i18n";
|
|
|
|
export const aboutResource = [
|
|
{
|
|
title: "certd.dashboard.helpDoc",
|
|
name: "document",
|
|
path: "/about/doc",
|
|
component: IFrameView,
|
|
meta: {
|
|
icon: "lucide:book-open-text",
|
|
link: "https://certd.docmirror.cn",
|
|
title: "certd.dashboard.helpDoc",
|
|
order: 9999,
|
|
show: () => {
|
|
const settingStore = useSettingStore();
|
|
return !settingStore.isComm;
|
|
},
|
|
},
|
|
},
|
|
];
|
|
|
|
export default aboutResource;
|