parsley/app/javascript/router.js

22 lines
373 B
JavaScript
Raw Normal View History

2018-03-29 01:57:00 -05:00
import Vue from 'vue';
import Router from 'vue-router';
import The404Page from './components/The404Page';
import TheRecipeList from './components/TheRecipeList';
Vue.use(Router);
export default new Router({
routes: [
{
path: '/',
name: 'recipeList',
component: TheRecipeList
},
{
path: '*',
component: The404Page
}
]
})