13 lines
190 B
TypeScript
13 lines
190 B
TypeScript
import { defineNavbarConfig } from 'vuepress-theme-plume'
|
|
|
|
export default defineNavbarConfig([
|
|
{
|
|
text: '首页',
|
|
link: '/',
|
|
},
|
|
{
|
|
text: '博客',
|
|
link: '/blog/',
|
|
}
|
|
])
|