Routing

Bourgeon is wrapping vue-router to provide routes to your application.

You can follow the documentation here.

Add routes

Add routes in the file /src/routes.js following the vue-router documentation

import WelcomeComponent from './components/Welcome'
import HelloComponent from './components/Hello'

export default [
  {
    path: '/',
    component: WelcomeComponent
  },
  {
    path: '/hello/:name',
    component: HelloComponent
  }
]