Skip to content
Snippets Groups Projects

Recipe view. Needs tests.

Merged Katarzyna Szlejter requested to merge recipe-view into main
3 files
+ 108
0
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 6
0
@@ -6,6 +6,7 @@ import ProfileCreationView from '../views/ProfileCreationView.vue'
import RegisterAccountView from '../views/RegisterAccountView.vue'
import PinCodeView from "@/views/PinCodeView.vue";
import FridgeView from "@/views/FridgeView.vue";
import RecipeView from "@/views/RecipeView.vue";
const router = createRouter({
@@ -45,6 +46,11 @@ const router = createRouter({
path: '/myFridge',
name: 'myFridge',
component: FridgeView
},
{
path: '/recipe/:id',
name: 'recipe',
component: RecipeView
}
]
})
Loading