storybook/docs/snippets/vue/button-story.js.mdx
2020-09-15 22:57:52 +02:00

13 lines
223 B
Plaintext

```js
// Button.stories.js
import Button from './Button';
export default { title: 'Components/Button' };
export const Primary = () => ({
components: { Button },
template: '<Button primary label="Button" />',
});
```