1<template>
2 <main>
3 <h1>Error {{ props.error?.statusCode }}...</h1>
4 <h2>{{ props.error?.message }}</h2>
5 <p>
6 <button type="button" @click="handleError">Go back home</button>
7 </p>
8 </main>
9</template>
10
11<script setup>
12const props = defineProps({
13 error: Object
14})
15
16const handleError = () => clearError({ redirect: '/' })
17</script>
18
19<style lang="scss">
20@import '@/styles/app';
21</style>