Files
certd/packages/ui/certd-client/src/router/source/header.ts
T
2025-06-28 23:57:01 +08:00

36 lines
679 B
TypeScript

import i18n from "/@/locales/i18n";
export const headerResource = [
{
title: "certd.helpDoc",
path: "https://certd.docmirror.cn",
meta: {
icon: "ion:document-text-outline",
},
},
{
title: "certd.source",
name: "source",
key: "source",
meta: {
icon: "ion:git-branch-outline",
},
children: [
{
title: "certd.github",
path: "https://github.com/certd/certd",
meta: {
icon: "ion:logo-github",
},
},
{
title: "certd.gitee",
path: "https://gitee.com/certd/certd",
meta: {
icon: "ion:logo-octocat",
},
},
],
},
];