ilk commit

This commit is contained in:
burakovec
2025-07-04 14:11:18 +03:00
parent 7604d77a89
commit 1754e646a8
306 changed files with 24956 additions and 0 deletions

21
src/App.vue Normal file
View File

@ -0,0 +1,21 @@
<template>
<RouterView v-if="loaded" />
<toasts />
<dialogs />
<loading />
</template>
<script setup lang="ts">
import { ref, onBeforeMount, onMounted } from 'vue'
import { RouterView } from 'vue-router'
import { useUsersStore } from '@/stores/usersStore'
const usersStore = useUsersStore()
import Loading from '@/components/Loading.vue'
const loaded = ref<boolean>(false)
onBeforeMount(async () => {
usersStore.SetUserData()
loaded.value = true
})
</script>