generated from pascalmartineau/wp-skeleton
12 lines
185 B
Vue
12 lines
185 B
Vue
<script setup lang="ts">
|
|
import type { NuxtError } from "#app";
|
|
|
|
defineProps<{ error: NuxtError }>();
|
|
</script>
|
|
|
|
<template>
|
|
<UApp>
|
|
<UError :error="error" />
|
|
</UApp>
|
|
</template>
|