Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Frontend
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IDATT2106 Scrum Team 02
Frontend
Merge requests
!18
Recipe view. Needs tests.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Recipe view. Needs tests.
recipe-view
into
main
Overview
0
Commits
1
Pipelines
1
Changes
3
Merged
Katarzyna Szlejter
requested to merge
recipe-view
into
main
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
4f292785
1 commit,
1 year ago
3 files
+
108
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/router/index.js
+
6
−
0
Options
@@ -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