adding initial data

This commit is contained in:
2021-03-16 18:00:32 +00:00
parent 64e4fb45cf
commit 7f024c4ecd
26 changed files with 11074 additions and 0 deletions

36
src/router/index.js Normal file
View 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;