Initial Vue.js project skeleton.

This commit is contained in:
Jonathan Bernard
2019-02-24 06:56:06 -07:00
parent 066e70b4bf
commit 1b91926d3a
41 changed files with 16147 additions and 2 deletions

25
web/src/router.ts Normal file
View File

@ -0,0 +1,25 @@
import Vue from 'vue';
import Router from 'vue-router';
import Home from './views/Home.vue';
Vue.use(Router);
export default new Router({
mode: 'history',
base: process.env.BASE_URL,
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')
}
]
});