feat: remove Loading component from app.vue

This commit is contained in:
SauceyRed 2025-05-28 23:38:04 +02:00
parent 751bdcfd9a
commit 379b85db4e
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462

View file

@ -1,14 +1,11 @@
<template> <template>
<div> <div>
<Loading v-if="loading" />
<NuxtPage /> <NuxtPage />
</div> </div>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
const loading = useState("loading");
</script> </script>
<style> <style>