Files
certd/packages/ui/certd-client/src/router/source/header.ts
T

31 lines
551 B
TypeScript
Raw Normal View History

2023-01-29 13:44:19 +08:00
export const headerResource = [
{
title: "文档",
2023-05-25 15:17:58 +08:00
path: "http://github.com/certd/certd"
2023-01-29 13:44:19 +08:00
},
{
title: "源码",
name: "source",
key: "source",
meta: {
icon: "ion:git-branch-outline"
},
children: [
{
2023-05-25 15:17:58 +08:00
title: "github",
2023-06-27 23:06:08 +08:00
path: "https://github.com/certd/certd",
2023-05-25 15:17:58 +08:00
meta: {
icon: "ion:logo-github"
}
2023-01-29 13:44:19 +08:00
},
{
2023-05-25 15:17:58 +08:00
title: "gitee",
2023-06-27 23:06:08 +08:00
path: "https://gitee.com/certd/certd",
2023-05-25 15:17:58 +08:00
meta: {
icon: "ion:logo-octocat"
}
2023-01-29 13:44:19 +08:00
}
]
}
];