36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
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: '技术',items:[
|
|
{text: 'Git使用文档', link: '/other/git'},
|
|
{text: 'GitHub高级搜索技巧', link: '/other/github'},
|
|
{text: 'Markdown使用教程', link: '/other/markdown'},
|
|
{text: 'npm使用教程', link: '/other/npm'},
|
|
]},
|
|
{text: '学习',items:[
|
|
{text: '学习效果低,忘性很大怎么办?',link: '/other/LearningAndMemory'},
|
|
{text: '学习网站分享', link: '/other/study'},
|
|
]},
|
|
{text: '面试',items:[
|
|
{text: '面试问答集锦', link: '/other/interview'},
|
|
]},
|
|
{text: '其他',items:[
|
|
{text: '关于本博客搭建', link: 'https://github.com/xugaoyi/evanblog'},
|
|
]},
|
|
]},
|
|
{text: '关于我',link: '/about/'}
|
|
] |