mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
26 lines
618 B
Plaintext
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',
|
|
};
|
|
``` |