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
Showing only changes of commit 2ed25157e3 - Show all commits
+2 -2
View File
@@ -16,12 +16,12 @@ 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';
const routes = [ const routes = [
{ {
path: '/', path: '/',
name: 'search', name: 'startPage',
component: SearchView component: SearchView
} }
] ]