First init

This commit is contained in:
saplf
2018-09-28 15:20:43 +08:00
commit a8fabb15fd
27 changed files with 332 additions and 0 deletions

23
src/router.js 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('./views/About.vue'),
},
],
})