mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
21 lines
559 B
Plaintext
21 lines
559 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, { argTypes }) => ({
|
|
props: Object.keys(argTypes),
|
|
components: { YourComponent },
|
|
template: `<YourComponent v-bind="$props" />`,
|
|
})} />
|
|
``` |