mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
17 lines
306 B
Plaintext
17 lines
306 B
Plaintext
```md
|
|
<!-- YourComponent.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import YourComponent from './YourComponent.vue';
|
|
|
|
<Meta
|
|
title="YourComponent"
|
|
component={YourComponent}
|
|
decorators={[
|
|
() => ({
|
|
template: '<div style="margin: 3em;"><story /></div>',
|
|
}),
|
|
]}
|
|
/>
|
|
``` |