2025-03-05 19:24:47 +00:00
|
|
|
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";
|
2025-03-05 19:24:47 +00:00
|
|
|
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,
|
2025-03-05 19:24:47 +00:00
|
|
|
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-05-05 21:43:39 +08:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-03-05 19:24:47 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export default aboutResource;
|