You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
586 B
29 lines
586 B
|
3 years ago
|
import Vue from "vue";
|
||
|
|
import VueRouter from "vue-router";
|
||
|
|
import HomeView from "../views/HomeView.vue";
|
||
|
|
|
||
|
|
Vue.use(VueRouter);
|
||
|
|
|
||
|
|
const routes = [
|
||
|
|
{
|
||
|
|
path: "/",
|
||
|
|
name: "home",
|
||
|
|
component: HomeView,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
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/AboutView.vue"),
|
||
|
|
},
|
||
|
|
];
|
||
|
|
|
||
|
|
const router = new VueRouter({
|
||
|
|
routes,
|
||
|
|
});
|
||
|
|
|
||
|
|
export default router;
|