Rewritten frontend with Vue

This commit is contained in:
2025-07-14 00:41:08 +00:00
parent 6142023ffe
commit 611f1ddd40
21 changed files with 1398 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<template>
<div v-if="authStore.status.show" class="global-status" style="display: block;">
<div :class="['status', authStore.status.type]">
{{ authStore.status.message }}
</div>
</div>
</template>
<script setup>
import { useAuthStore } from '@/stores/auth'
const authStore = useAuthStore()
</script>