修改为传统的页面布局。

This commit is contained in:
aaron 2025-01-09 10:13:21 +08:00
parent a10451b757
commit ced7369927

View File

@ -1,10 +1,10 @@
import { createRouter, createWebHistory } from 'vue-router' import { createRouter, createWebHistory } from 'vue-router'
import TabsLayout from '../layouts/TabsLayout.vue' import BasicLayout from '../layouts/BasicLayout.vue'
const routes = [ const routes = [
{ {
path: '/', path: '/',
component: TabsLayout, component: BasicLayout,
children: [ children: [
{ {
path: '', path: '',
@ -35,7 +35,7 @@ const routes = [
meta: { title: '楼栋列表' } meta: { title: '楼栋列表' }
}, },
{ {
path: '/station/list', path: 'community/station',
name: 'StationList', name: 'StationList',
component: () => import('../views/station/StationList.vue'), component: () => import('../views/station/StationList.vue'),
meta: { title: '驿站列表' } meta: { title: '驿站列表' }