init
This commit is contained in:
41
src/router/index.js
Normal file
41
src/router/index.js
Normal file
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* @Author: szy
|
||||
* @Date: 2022-01-12 14:22:29
|
||||
* @LastEditors: Please set LastEditors
|
||||
* @LastEditTime: 2022-04-28 14:53:02
|
||||
* @FilePath: \web-pc\src\pages\big-screen\router\index.js
|
||||
*/
|
||||
import Vue from "vue";
|
||||
import VueRouter from "vue-router";
|
||||
|
||||
Vue.use(VueRouter);
|
||||
|
||||
const routes = [ {
|
||||
path: '/',
|
||||
redirect: '/index',
|
||||
},
|
||||
{
|
||||
path: '/home',
|
||||
name: 'home',
|
||||
component: () => import(/* webpackChunkName: "LSD.bighome" */ '../views/home.vue'),
|
||||
children:[
|
||||
{
|
||||
path: '/index',
|
||||
name: 'index',
|
||||
component: () => import(/* webpackChunkName: "LSD.bighome" */ '../views/indexs/index.vue'),
|
||||
},
|
||||
// {
|
||||
// path: '/test',
|
||||
// name: 'testMap',
|
||||
// component: () => import(/* webpackChunkName: "LSD.bighome" */ '../views/test/testMap.vue'),
|
||||
// }
|
||||
]
|
||||
},
|
||||
];
|
||||
const router = new VueRouter({
|
||||
mode: "hash",
|
||||
// base: process.env.BASE_URL,
|
||||
routes
|
||||
});
|
||||
|
||||
export default router;
|
||||
Reference in New Issue
Block a user