Add error page
This commit is contained in:
parent
81bfed6710
commit
0418315f4d
6 changed files with 171 additions and 87 deletions
19
components/AppError.vue
Normal file
19
components/AppError.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue