feat: add Loading component to app.vue
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
This commit is contained in:
parent
582435a3c7
commit
508af36704
1 changed files with 10 additions and 1 deletions
11
app.vue
11
app.vue
|
@ -1,7 +1,16 @@
|
|||
<template>
|
||||
<NuxtPage />
|
||||
<div>
|
||||
<Loading v-if="loading" />
|
||||
<NuxtPage />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
|
||||
const loading = useState("loading");
|
||||
|
||||
</script>
|
||||
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue