This commit is contained in:
许晓东
2021-08-31 00:28:52 +08:00
parent 5b36126ea4
commit 7bfe1b35bd
18 changed files with 13510 additions and 0 deletions

30
ui/src/router/index.js Normal file
View File

@@ -0,0 +1,30 @@
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;