initial vue template

This commit is contained in:
Niels Kooiman
2019-08-14 08:51:48 +02:00
parent 77ce456e11
commit 145f191fa5
36 changed files with 11654 additions and 1 deletions

23
src/router.ts Normal file
View File

@@ -0,0 +1,23 @@
import Vue from 'vue';
import Router from 'vue-router';
import Home from './views/Home.vue';
Vue.use(Router);
export default new Router({
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'),
},
],
});