mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-15 23:13:40 +08:00
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
/*
|
|
* @Author: yubaolee <yubaolee@163.com> | ahfu~ <954478625@qq.com>
|
|
* @Date: 2025-04-23 20:26:48
|
|
* @LastEditTime: 2025-06-07 21:56:14
|
|
* @Description: 顶部超链接
|
|
* Copyright (c) 2025 by yubaolee | ahfu~ , All Rights Reserved.
|
|
*/
|
|
import { defineNavbarConfig } from 'vuepress-theme-plume'
|
|
|
|
export const navbar = defineNavbarConfig([
|
|
{ text: '主页', link: 'http://www.openauth.net.cn', icon: 'mdi:home' },
|
|
{ text: '文档首页', link: '/', icon: 'mdi:book-open-page-variant' },
|
|
{
|
|
text: '开源版文档',
|
|
icon: 'logos:opensource',
|
|
items: [
|
|
{ text: '后端开发', link: '/notes/core/README.md', icon: 'mdi:server' },
|
|
{ text: 'Vue2前端', link: '/notes/vue2/README.md', icon: 'logos:vue' }
|
|
]
|
|
},
|
|
{
|
|
text: '付费订阅文档',
|
|
icon: 'ri:vip-crown-2-line',
|
|
items: [
|
|
{ text: 'vue3前端', link: '/notes/pro/README.md', icon: 'material-icon-theme:vue' },
|
|
{ text: '移动UniApp', link: '/notes/mobile/README.md', icon: 'ri:smartphone-line' }
|
|
]
|
|
},
|
|
|
|
])
|