storybook/docs/snippets/vue/your-component.mdx-2.mdx.mdx
2021-11-04 15:48:36 +00:00

24 lines
663 B
Plaintext

```md
<!-- YourComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import YourComponent from './YourComponent.vue';
<!--👇 The title prop determines where your story goes in the story list -->
<Meta title="YourComponent" component={YourComponent} />
<!--👇 We create a “template” of how args map to rendering -->
export const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes),
components: { YourComponent },
template: `<YourComponent v-bind="$props" />`,
});
<!-- 👇 The args you need here will depend on your component -->
<Story
name="FirstStory"
args={{}}>
{Template.bind({})}
</Story>
```