feat: add Loading component to app.vue
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-05-28 02:30:18 +02:00
parent 582435a3c7
commit 508af36704
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7

11
app.vue
View file

@ -1,7 +1,16 @@
<template> <template>
<NuxtPage /> <div>
<Loading v-if="loading" />
<NuxtPage />
</div>
</template> </template>
<script lang="ts" setup>
const loading = useState("loading");
</script>
<style> <style>
html, html,
body { body {