paulnicoue/components/AppError.vue
2023-01-06 15:46:20 +01:00

19 lines
353 B
Vue

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