refactor(search)!: rename Searchbar to SearchBar

Vue.js components should have multi-word names.
This commit is contained in:
2026-08-09 13:09:39 +02:00
committed by Gitea
parent bf79f25a33
commit 049857fe91
3 changed files with 4 additions and 4 deletions
@@ -15,7 +15,7 @@ limitations under the License.
-->
<script setup>
import Searchbar from '@/features/search/components/Searchbar.vue';
import SearchBar from '@/features/search/components/SearchBar.vue';
import { watch } from 'vue';
import { useRoute } from 'vue-router';
@@ -34,7 +34,7 @@ watch(() => route.query.q, q => {
</script>
<template>
<Searchbar
<SearchBar
v-if="route.name === 'searchResults'"
v-model="searchQueryModel"
auto-submit