vuepress-theme-vdoing/docs/.vuepress/config/nav.js

26 lines
720 B
JavaScript

module.exports = [
{text: '首页', link: '/'},
{
text: '前端',
items: [
{text: 'JavaScript', link: '/web/'},
{text: 'TypeScript', link: '/web/'},
{text: 'vue', link: '/web/'}
]
},
{
text: 'python',
items: [
{text: 'python', link: '/python/'}
]
},
{text: '技术杂谈',items:[
{text: 'Git使用文档', link: '/other/git'},
{text: 'GitHub使用技巧', link: '/other/github'},
{text: 'Markdown使用教程', link: '/other/markdown'},
{text: 'npm使用教程', link: '/other/npm'},
{text: '学习网站分享', link: '/other/study'},
{text: '面试问答集锦', link: '/other/interview'}
]},
{text: '关于我',link: '/about/'}
]