mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
40 lines
881 B
Plaintext
40 lines
881 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.vue';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
//👇 Creates specific argTypes
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
};
|
|
|
|
//👇 Some function to demonstrate the behavior
|
|
const someFunction = (someValue) => {
|
|
return `i am a ${someValue}`;
|
|
};
|
|
|
|
export const ExampleStory = (args, { argTypes }) => {
|
|
//👇 Destructure the label from the args object
|
|
const oldArgs = args;
|
|
const { label } = oldArgs;
|
|
|
|
//👇 Assigns the function result to a variable and pass it as a prop into the component
|
|
const functionResult = someFunction(label);
|
|
args.label = functionResult;
|
|
|
|
return {
|
|
props: Object.keys(argTypes),
|
|
components: { Button },
|
|
template: '<Button v-bind="$props" />',
|
|
};
|
|
};
|
|
ExampleStory.args = {
|
|
primary: true,
|
|
size: 'small',
|
|
label: 'button',
|
|
};
|
|
``` |