parsley/src/router/index.ts

26 lines
630 B
TypeScript
Raw Normal View History

2021-11-28 23:19:56 -06:00
import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router';
import Recipes from '../views/Recipes.vue';
const routes: Array<RouteRecordRaw> = [
{
path: '/',
name: 'Recipes',
component: Recipes
},
{
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')
}
];
const router = createRouter({
history: createWebHashHistory(),
routes
});
export default router;