38 lines
566 B
TypeScript
38 lines
566 B
TypeScript
import { defineNavbarConfig } from 'vuepress-theme-plume'
|
|
|
|
export default defineNavbarConfig([
|
|
{
|
|
text: '首页',
|
|
link: '/',
|
|
},
|
|
{
|
|
text: '博客',
|
|
link: '/blog/',
|
|
},
|
|
{
|
|
text: '编程笔记',
|
|
items: [
|
|
{
|
|
text: 'LeetCode',
|
|
link: '/programming/leetcode/',
|
|
},
|
|
{
|
|
text: 'C++',
|
|
link: '/programming/cplusplus/',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
text: '工具',
|
|
link: '/tools/',
|
|
},
|
|
{
|
|
text: '关于',
|
|
link: '/about/',
|
|
},
|
|
{
|
|
text: '友情链接',
|
|
link: '/friends/',
|
|
},
|
|
])
|