20 lines
353 B
Vue
20 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>
|