storybook/docs/snippets/vue/button-story-component-args-primary.js.mdx
2020-09-15 23:33:58 +02:00

15 lines
205 B
Plaintext

```js
// Button.stories.js
import Button from './Button';
export default {
title: 'Button',
component: Button,
args: {
// Now all Button stories will be primary.
primary: true,
},
};
```