Add search results view

This commit is contained in:
2026-05-10 16:09:51 +02:00
parent 2ed25157e3
commit 24926b7312
2 changed files with 8 additions and 0 deletions
+6
View File
@@ -17,12 +17,18 @@ limitations under the License.
import { createRouter, createWebHistory } from 'vue-router'
import SearchView from '../views/SearchView.vue';
import SearchResultsView from '@/features/search/views/SearchResultsView.vue';
const routes = [
{
path: '/',
name: 'startPage',
component: SearchView
},
{
path: '/search',
name: 'searchResults',
component: SearchResultsView
}
]