some basic views

This commit is contained in:
vabene1111
2024-02-21 20:18:54 +01:00
committed by smilerz
parent 257e886d87
commit 92b7439969
121 changed files with 23617 additions and 34 deletions

View File

@@ -9,10 +9,12 @@ import 'vite/modulepreload-polyfill';
import vuetify from "@/vuetify";
import ShoppingListPage from "@/pages/ShoppingListPage.vue";
import RecipeSearchPage from "@/pages/RecipeSearchPage.vue";
import RecipeViewPage from "@/pages/RecipeViewPage.vue";
const routes = [
{path: '/', component: RecipeSearchPage},
{path: '/about', component: ShoppingListPage},
{path: '/shopping', component: ShoppingListPage},
{path: '/recipe/:id', component: RecipeViewPage, props: true},
]
const router = createRouter({