From c85f6348bccd7abbea30133d448b75ba394317b5 Mon Sep 17 00:00:00 2001 From: Frost-ZX Date: Fri, 30 Aug 2024 13:25:29 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=94=B9=E4=BE=A7?= =?UTF-8?q?=E8=BE=B9=E6=A0=8F=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 8fa7453..b317ce8 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -25,7 +25,7 @@ export const router = createRouter({ name: 'IndexView', component: IndexView, meta: { - iconClass: 'mdi mdi-home-outline', + iconClass: 'mdi mdi-home', showInAside: true, title: '主页', }, @@ -45,7 +45,7 @@ export const router = createRouter({ name: 'NavView', component: () => import('@/views/NavView/NavView.vue'), meta: { - iconClass: 'mdi mdi-compass-outline', + iconClass: 'mdi mdi-compass', showInAside: ENABLE_NAV_MODULE, title: '导航', }, @@ -75,7 +75,7 @@ export const router = createRouter({ name: 'AboutView', component: AboutView, meta: { - iconClass: 'mdi mdi-information-outline', + iconClass: 'mdi mdi-information', showInAside: true, title: '关于', },