storybook/docs/snippets/vue/button-story-with-addon-example.js.mdx
2021-02-23 00:26:03 +00:00

20 lines
351 B
Plaintext

```js
// Button.stories.js
import Button from './Button.vue';
export default {
title: 'Button',
//👇 Creates specific parameters for the story
parameters: {
myAddon: {
data: 'this data is passed to the addon',
},
},
};
export const Primary = () => ({
components: { Button },
template: '<Button label="Hello" />',
});
```