-
Ingrid Martinsheimen Egge authoredIngrid Martinsheimen Egge authored
index.js 449 B
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from "@/views/HomeView.vue";
import FridgeView from "@/views/FridgeView.vue";
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView
},
{
path: '/myFridge',
name: 'myFridge',
component: FridgeView
},
]
})
export default router