mirror of
https://github.com/certd/certd.git
synced 2026-06-22 17:57:31 +08:00
36 lines
679 B
TypeScript
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",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
];
|