slug调整 兼容 example主题

This commit is contained in:
tangly1024.com
2024-05-08 15:26:09 +08:00
parent 7db60ffa10
commit a75a5acd7f
3 changed files with 7 additions and 7 deletions

View File

@@ -17,28 +17,28 @@ export const MenuList = props => {
id: 1,
icon: 'fas fa-search',
name: locale.NAV.SEARCH,
to: '/search',
href: '/search',
show: siteConfig('EXAMPLE_MENU_SEARCH', null, CONFIG)
},
{
id: 2,
icon: 'fas fa-archive',
name: locale.NAV.ARCHIVE,
to: '/archive',
href: '/archive',
show: siteConfig('EXAMPLE_MENU_ARCHIVE', null, CONFIG)
},
{
id: 3,
icon: 'fas fa-folder',
name: locale.COMMON.CATEGORY,
to: '/category',
href: '/category',
show: siteConfig('EXAMPLE_MENU_CATEGORY', null, CONFIG)
},
{
id: 4,
icon: 'fas fa-tag',
name: locale.COMMON.TAGS,
to: '/tag',
href: '/tag',
show: siteConfig('EXAMPLE_MENU_TAG', null, CONFIG)
}
]