paulnicoue/components/AppError.vue

20 lines
353 B
Vue
Raw Normal View History

2023-01-06 15:46:20 +01:00
<template>
<main>
<button class="app__error" @click="$emit('handleError')">Clear errors</button>
</main>
</template>
<script setup>
// --------------------------------------------------
// DATA
// --------------------------------------------------
const emit = defineEmits([
'handleError'
]);
</script>