mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +08:00
add click event to the button
This commit is contained in:
parent
96fcaa53c2
commit
cbc1942f86
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user