storybook/docs/snippets/vue/your-component.mdx-3.mdx.mdx
2022-07-07 18:50:21 +01:00

22 lines
552 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} />
<!-- 👇 The args you need here will depend on your component -->
<Story
name="FirstStory"
args={{}}
render={(args) => ({
components: { YourComponent },
setup() {
return { args };
},
template: `<YourComponent v-bind="args" />`,
})} />
```