mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
17 lines
285 B
Plaintext
17 lines
285 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export const Text = (args) => ({
|
|
components: { Button },
|
|
setup() {
|
|
return {
|
|
label: args.label,
|
|
onClick: action('clicked'),
|
|
};
|
|
},
|
|
template: '<Button @onClick="onClick" :label="label" />',
|
|
});
|
|
Text.args = {
|
|
label: 'Hello',
|
|
};
|
|
``` |