This commit is contained in:
clay
2022-01-16 21:14:30 +08:00
parent 8e9cf7b833
commit b7897ba20e
18 changed files with 799 additions and 269 deletions

View File

@@ -14,6 +14,16 @@ const routes = [
name: 'TeachingStaff',
component: () => import(/* webpackChunkName: "about" */ '../views/school_profile/index')
},
{
path: '/mobile',
name: 'Mobile',
component: () => import(/* webpackChunkName: "about" */ '../views/mobile/index')
},
{
path: '/mobile/:secondId/:navId',
name: 'Mobile',
component: () => import(/* webpackChunkName: "about" */ '../views/mobile/index')
},
{
path: '/ts',
name: 'TeachingStaff',
@@ -30,7 +40,12 @@ const routes = [
component: () => import(/* webpackChunkName: "about" */ '../components/HelloWorld')
},
{
path: '/:navId',
path: '/pc/:secondId/:navId',
name: 'content',
component: () => import(/* webpackChunkName: "about" */ '../views/content/index')
},
{
path: '/pc/:secondId',
name: 'content',
component: () => import(/* webpackChunkName: "about" */ '../views/content/index')
},