I am seeking assistance with my first question and hope to receive your support.
In my setup, I have a catalogue page that includes a keyword search function and a main page with a search bar.
My objective is to automatically redirect any submission from the main search bar to trigger the keyword search on the catalogue page.
<button class="searchword" @click="search()"></button>
Within the destination URL, there is a method implemented as follows:
search: function() {
this.search.keyword = this.search.value;
this.submit_form();
},