22 lines
564 B
JavaScript
22 lines
564 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: 'git使用文档', link: '/other/git'},
|
|
{text: 'github使用技巧', link: '/other/github'},
|
|
{text: 'markdown使用教程', link: '/other/markdown'},
|
|
{text: '学习网站分享', link: '/other/study'},
|
|
{text: '关于我',link: '/about/'}
|
|
] |