From ced736992792e1136e2546cc3205ef9da26219f6 Mon Sep 17 00:00:00 2001 From: aaron <> Date: Thu, 9 Jan 2025 10:13:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=BA=E4=BC=A0=E7=BB=9F?= =?UTF-8?q?=E7=9A=84=E9=A1=B5=E9=9D=A2=E5=B8=83=E5=B1=80=E3=80=82?= 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 dc32b70..e578239 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,10 +1,10 @@ import { createRouter, createWebHistory } from 'vue-router' -import TabsLayout from '../layouts/TabsLayout.vue' +import BasicLayout from '../layouts/BasicLayout.vue' const routes = [ { path: '/', - component: TabsLayout, + component: BasicLayout, children: [ { path: '', @@ -35,7 +35,7 @@ const routes = [ meta: { title: '楼栋列表' } }, { - path: '/station/list', + path: 'community/station', name: 'StationList', component: () => import('../views/station/StationList.vue'), meta: { title: '驿站列表' }