mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
14 lines
219 B
Plaintext
14 lines
219 B
Plaintext
class {
|
|
onCreate(input) {
|
|
this.onClick = input.onClick;
|
|
}
|
|
|
|
handleClick() {
|
|
this.input.onClick();
|
|
}
|
|
}
|
|
|
|
<div>
|
|
<button type="button" on-click("handleClick")>${input.label}</button>
|
|
</div>
|