This commit is contained in:
2023-09-05 00:23:09 +02:00
parent 68f5c068fb
commit 6d54bb4768
2 changed files with 2 additions and 3 deletions

View File

@@ -1,9 +1,10 @@
<script setup lang="ts">
import type { NuxtError } from 'nuxt/app'
import type { NuxtError } from 'nuxt/app';
defineProps({
error: Object as () => NuxtError,
})
const appConfig = useAppConfig()
const getColor = computed(() => appConfig.ui.primary)
</script>