storybook/docs/snippets/vue/button-story.js.mdx
2021-01-13 16:28:43 +00:00

15 lines
227 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" />',
});
```