storybook/docs/snippets/vue/your-component-with-decorator.mdx.mdx
2021-08-08 18:33:11 +01:00

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>',
}),
]}
/>
```