mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
22 lines
385 B
Vue
22 lines
385 B
Vue
<template>
|
|
<div>
|
|
<div>
|
|
<h1>{{ error?.message }}</h1>
|
|
This is the error page 😱
|
|
<div
|
|
v-if="error?.data?.path"
|
|
data-testid="path"
|
|
>
|
|
Path: {{ error.data.path }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { NuxtError } from '#app'
|
|
defineProps({
|
|
error: Object as () => NuxtError
|
|
})
|
|
</script>
|