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