style: reorder imports alphabetically

This commit is contained in:
2026-08-09 13:09:39 +02:00
committed by Gitea
parent db3758a54a
commit d8b4aa7a1a
23 changed files with 43 additions and 45 deletions
+3 -4
View File
@@ -15,13 +15,12 @@ limitations under the License.
-->
<script setup>
import Navbar from './features/nav/components/Navbar.vue';
import Footer from './features/footer/components/Footer.vue';
import { LANGUAGE_PATH } from './config/featureSettings.js';
import { updatePageTitle } from './router';
import Footer from './features/footer/components/Footer.vue';
import Navbar from './features/nav/components/Navbar.vue';
import { useSettings } from './features/settings/composables/useSettings.js';
import { setLocale } from './i18n';
import { updatePageTitle } from './router';
import { computed, onMounted, watch, watchEffect } from 'vue';
import { useRoute } from 'vue-router';