refactor: 修改侧边栏图标

This commit is contained in:
2024-08-30 13:25:29 +08:00
parent bf66ff6e1c
commit c85f6348bc

View File

@@ -25,7 +25,7 @@ export const router = createRouter({
name: 'IndexView', name: 'IndexView',
component: IndexView, component: IndexView,
meta: { meta: {
iconClass: 'mdi mdi-home-outline', iconClass: 'mdi mdi-home',
showInAside: true, showInAside: true,
title: '主页', title: '主页',
}, },
@@ -45,7 +45,7 @@ export const router = createRouter({
name: 'NavView', name: 'NavView',
component: () => import('@/views/NavView/NavView.vue'), component: () => import('@/views/NavView/NavView.vue'),
meta: { meta: {
iconClass: 'mdi mdi-compass-outline', iconClass: 'mdi mdi-compass',
showInAside: ENABLE_NAV_MODULE, showInAside: ENABLE_NAV_MODULE,
title: '导航', title: '导航',
}, },
@@ -75,7 +75,7 @@ export const router = createRouter({
name: 'AboutView', name: 'AboutView',
component: AboutView, component: AboutView,
meta: { meta: {
iconClass: 'mdi mdi-information-outline', iconClass: 'mdi mdi-information',
showInAside: true, showInAside: true,
title: '关于', title: '关于',
}, },