Add search form submit #32 #45

Merged
jakob.scheid merged 20 commits from feature/search-form-submit into main 2026-05-14 11:29:19 +02:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit 24926b7312 - Show all commits
@@ -0,0 +1,2 @@
<template>
</template>
+6
View File
@@ -17,12 +17,18 @@ limitations under the License.
import { createRouter, createWebHistory } from 'vue-router' import { createRouter, createWebHistory } from 'vue-router'
import SearchView from '../views/SearchView.vue'; import SearchView from '../views/SearchView.vue';
import SearchResultsView from '@/features/search/views/SearchResultsView.vue';
const routes = [ const routes = [
{ {
path: '/', path: '/',
name: 'startPage', name: 'startPage',
component: SearchView component: SearchView
},
{
path: '/search',
name: 'searchResults',
component: SearchResultsView
} }
] ]