mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
20 lines
351 B
Plaintext
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" />',
|
|
});
|
|
``` |