storybook/docs/snippets/vue/button-story-with-args.2.js.mdx

26 lines
618 B
Plaintext

```js
// Button.stories.js
import Button from './Button.vue';
export default {
component: Button,
title: 'Components/Button',
};
//👇 We create a “template” of how args map to rendering
const Template = (args, { argTypes }) => ({
components: { Button },
props: Object.keys(argTypes),
// Storybook provides all the args in a $props variable.
// Each arg is also available as their own name.
template: '<Button v-bind="$props" v-on="$props" />',
});
//👇 Each story then reuses that template
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Primary',
};
```