started search router view

This commit is contained in:
2023-08-13 20:18:11 +02:00
parent 0fc1cd12dd
commit 749ffd3867
8 changed files with 218 additions and 70 deletions

View File

@@ -32,6 +32,15 @@ const router = createRouter({
// which is lazy-loaded when the route is visited.
component: () => import('../views/Concernement.vue'),
props: true
},
{
path: '/search/',
name: 'search',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/Search.vue'),
props: true
}
]
})