fbredius/storybook

View on GitHub
docs/snippets/vue/button-story-component-decorator.mdx.mdx

Summary

Maintainability
Test Coverage
```md
import { Meta, Story } from '@storybook/addon-docs';

import Button from './Button.vue';

<Meta
  title="Button"
  component={Button}
  decorators={[
    () => ({
      template: '<div style="margin: 3em;"><story /></div>',
    }),
  ]}
/>

<!-- Remainder story implementation -->
```