update
This commit is contained in:
+9
-4
@@ -3,13 +3,18 @@ import { createRouter, createWebHistory, Router, RouteRecordRaw } from 'vue-rout
|
||||
const routes: Array<RouteRecordRaw> = [
|
||||
{
|
||||
path: '/',
|
||||
name: '首页',
|
||||
name: 'index',
|
||||
meta: {
|
||||
title: '首页',
|
||||
},
|
||||
component: () => import('/@/views/index.vue'),
|
||||
// component: () => import('/@/views/mobile/index.vue'),
|
||||
},
|
||||
{
|
||||
path: '/indexSon',
|
||||
name: '副屏',
|
||||
path: '/secondScreen',
|
||||
name: 'secondScreen',
|
||||
meta: {
|
||||
title: '副屏',
|
||||
},
|
||||
component: () => import('/@/views/indexSon.vue'),
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user