mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
37 lines
789 B
Plaintext
37 lines
789 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.vue';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
argTypes: {
|
|
backgroundColor: { control: "color" }
|
|
},
|
|
};
|
|
|
|
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",
|
|
};
|
|
``` |