storybook/docs/snippets/vue/button-story-default-docs-code.js.mdx
2020-12-23 17:00:49 +00:00

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",
};
```