refactor(nuxt): update app.vue

wrap nuxt error boundary with `a-extract-style` component
also remove commented-out `NuxtWelcome` component
This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2024-11-11 17:56:50 -05:00
parent 428023b89a
commit 64acbb60f7
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

13
app.vue
View File

@ -32,14 +32,15 @@
<a-extract-style>
<NuxtLayout>
<NuxtPage />
<!-- <NuxtWelcome /> -->
</NuxtLayout>
</a-extract-style>
<nuxt-error-boundary>
<template #error="{ error, clearError }">
<error-bound :error="error" />
</template>
</nuxt-error-boundary>
<a-extract-style>
<nuxt-error-boundary>
<template #error="{ error, clearError }">
<error-bound :error="error" />
</template>
</nuxt-error-boundary>
</a-extract-style>
</template>
<style>
body {