Add error page

This commit is contained in:
Paul Nicoué 2023-01-06 15:46:20 +01:00
parent 81bfed6710
commit 0418315f4d
6 changed files with 171 additions and 87 deletions

19
components/AppError.vue Normal file
View file

@ -0,0 +1,19 @@
<template>
<main>
<button class="app__error" @click="$emit('handleError')">Clear errors</button>
</main>
</template>
<script setup>
// --------------------------------------------------
// DATA
// --------------------------------------------------
const emit = defineEmits([
'handleError'
]);
</script>