adding initial data
This commit is contained in:
36
src/router/index.js
Normal file
36
src/router/index.js
Normal file
@@ -0,0 +1,36 @@
|
||||
import Vue from "vue";
|
||||
import VueRouter from "vue-router";
|
||||
|
||||
Vue.use(VueRouter);
|
||||
|
||||
const routes = [
|
||||
{
|
||||
path: "/",
|
||||
name: "Home",
|
||||
component: () => import(/* webpackChunkName: "help" */ "../views/Home.vue"),
|
||||
},
|
||||
{
|
||||
path: "/help",
|
||||
name: "Help",
|
||||
component: () => import(/* webpackChunkName: "help" */ "../views/Help.vue"),
|
||||
},
|
||||
{
|
||||
path: "/deck-builder",
|
||||
name: "DeckBuilder",
|
||||
component: () => import(/* webpackChunkName: "deckbuilder" */ "../views/DeckBuilder.vue"),
|
||||
},
|
||||
// {
|
||||
// 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({
|
||||
routes,
|
||||
});
|
||||
|
||||
export default router;
|
||||
Reference in New Issue
Block a user