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

15 lines
264 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" />',
});
Primary.storyName = 'I am the primary';
```