refactor(search): move search view to search feature directory for consistency

This commit is contained in:
2026-08-08 17:34:17 +02:00
parent ea5e238ad0
commit a913b16f7c
2 changed files with 2 additions and 2 deletions
@@ -15,8 +15,8 @@ limitations under the License.
-->
<script setup>
import SearchBar from '../features/search/components/SearchBar.vue';
import logo from '@/assets/images/logo.svg';
import SearchBar from '@/features/search/components/SearchBar.vue';
import { ref } from 'vue';
import { useI18n } from 'vue-i18n';
+1 -1
View File
@@ -16,9 +16,9 @@ limitations under the License.
import LegalNoticeView from '@/features/legal/views/LegalNoticeView.vue';
import SearchResultsView from '@/features/search/views/SearchResultsView.vue';
import SearchView from '@/features/search/views/SearchView.vue';
import SettingsView from '@/features/settings/views/SettingsView.vue';
import NotFound from '@/views/NotFound.vue';
import SearchView from '@/views/SearchView.vue';
import { i18n } from '@/i18n';
import { createRouter, createWebHistory } from 'vue-router';