From c485985d3be687d17168512de44ea7b744fea7cc Mon Sep 17 00:00:00 2001 From: Kyomotoi Date: Tue, 20 Jul 2021 13:42:00 +0800 Subject: =?UTF-8?q?=E2=9C=A8=20=E6=96=B0=E5=A2=9E=E5=89=8D=E7=AB=AFdemo?= =?UTF-8?q?=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../plugins/manege/atri-manege/src/router/index.js | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ATRI/plugins/manege/atri-manege/src/router/index.js (limited to 'ATRI/plugins/manege/atri-manege/src/router') diff --git a/ATRI/plugins/manege/atri-manege/src/router/index.js b/ATRI/plugins/manege/atri-manege/src/router/index.js new file mode 100644 index 0000000..d36779e --- /dev/null +++ b/ATRI/plugins/manege/atri-manege/src/router/index.js @@ -0,0 +1,29 @@ +import Vue from 'vue' +import VueRouter from 'vue-router' +import Home from '../views/Home.vue' + +Vue.use(VueRouter) + +const routes = [ + { + path: '/', + name: 'Home', + component: Home + }, + { + path: '/about', + name: 'About', + // route level code-splitting + // this generates a separate chunk (about.[hash].js) for this route + // which is lazy-loaded when the route is visited. + component: () => import(/* webpackChunkName: "about" */ '../views/About.vue') + } +] + +const router = new VueRouter({ + mode: 'history', + base: process.env.BASE_URL, + routes +}) + +export default router -- cgit v1.2.3