feat: search component and loading splashscreen

This commit is contained in:
2025-08-08 14:36:05 +03:00
parent a8bb5eb493
commit 2fb841ef08
12 changed files with 217 additions and 35 deletions

16
spa/src/AppLoading.vue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<div style="z-index: 99999" class="fixed top-0 left-0 w-full h-full bg-base-100">
<div class="flex flex-col items-center justify-center h-full">
<span class="loading loading-infinity loading-xl"></span>
<h1>Загрузка приложения...</h1>
</div>
</div>
</template>
<script setup>
const props = defineProps({
error: Error,
});
</script>