mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
19 lines
351 B
Plaintext
19 lines
351 B
Plaintext
```md
|
||
<!-- Button.stories.mdx --->
|
||
|
||
import { Story } from '@storybook/addon-docs';
|
||
|
||
import Button from './Button.vue';
|
||
|
||
export const Template = (args) => ({
|
||
components: { Button },
|
||
setup() {
|
||
return { args };
|
||
},
|
||
template: '<Button v-bind="args" />',
|
||
});
|
||
|
||
<Story name="Basic" args={{ label: ‘hello’ }}>
|
||
{Template.bind({})}
|
||
</Story>
|
||
``` |