add click event to the button

This commit is contained in:
chakir qatab 2023-01-22 14:35:58 +04:00
parent 96fcaa53c2
commit cbc1942f86

View File

@ -1,5 +1,5 @@
<template>
<button type="button" :class="classes" :style="style">{{ label }} {{ counter }}</button>
<button type="button" @click="onClick" :class="classes" :style="style">{{ label }} {{ counter }}</button>
</template>
<script lang="typescript">
@ -35,7 +35,7 @@ export default {
};
// Notice that `icon` prop component is still passed through even though it isn't mapped
return { classes, style, counter }
return { classes, style, counter, onClick }
},
};
</script>