mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:41:07 +08:00
26 lines
438 B
Plaintext
26 lines
438 B
Plaintext
```md
|
|
<!-- Button.stories.mdx-->
|
|
|
|
import { Meta, Story } from "@storybook/addon-docs";
|
|
|
|
import Button from './Button.vue';
|
|
|
|
<Meta title="Components/Button" component={Button}/>
|
|
|
|
export const Template = (args) => ({
|
|
components: { Button },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: '<Button v-bind="args" />',
|
|
});
|
|
|
|
<Story
|
|
name="Primary"
|
|
args={{
|
|
primary: true,
|
|
label: 'Button',
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
``` |