feat(index.js): creadas las rutas a UserDetail y UserManagement

parent ab27c5e8
Showing with 12 additions and 0 deletions
......@@ -5,6 +5,8 @@ import AISearch from '@/views/AISearch.vue'
import Recipes from '@/views/Recipes.vue'
import CreateRecipe from '@/views/CreateRecipe.vue'
import RecipeDetail from '@/views/RecipeDetail.vue'
import UserDetail from '@/views/UserDetail.vue'
import UserManagement from '@/views/UserManagement.vue'
const routes = [
{
......@@ -40,6 +42,16 @@ const routes = [
path: '/recipes/detail',
name: 'RecipeDetail',
component: RecipeDetail
},
{
path: '/users/detail',
name: 'UserDetail',
component: UserDetail
},
{
path: '/users/management',
name: 'UserManagement',
component: UserManagement
}
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment