Start on lunch run home

This commit is contained in:
Ben Ramey
2018-04-11 22:06:48 -05:00
committed by benjaminramey
parent 79a56e7022
commit 2b5b821721
7 changed files with 34 additions and 124 deletions

View File

@@ -1,6 +1,6 @@
import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'
import Start from '@/components/Start'
Vue.use(Router)
@@ -8,8 +8,8 @@ export default new Router({
routes: [
{
path: '/',
name: 'HelloWorld',
component: HelloWorld
name: 'Start',
component: Start
}
]
})