初始化项目:创建 VuePress Plume 网站
This commit is contained in:
18
docs/.vuepress/navbar.ts
Normal file
18
docs/.vuepress/navbar.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @see https://theme-plume.vuejs.press/config/navigation/ 查看文档了解配置详情
|
||||
*
|
||||
* Navbar 配置文件,它在 `.vuepress/plume.config.ts` 中被导入。
|
||||
*/
|
||||
|
||||
import { defineNavbarConfig } from 'vuepress-theme-plume'
|
||||
|
||||
export default defineNavbarConfig([
|
||||
{ text: '首页', link: '/' },
|
||||
{ text: '博客', link: '/blog/' },
|
||||
{ text: '标签', link: '/blog/tags/' },
|
||||
{ text: '归档', link: '/blog/archives/' },
|
||||
{
|
||||
text: '笔记',
|
||||
items: [{ text: '示例', link: '/notes/demo/README.md' }]
|
||||
},
|
||||
])
|
||||
Reference in New Issue
Block a user