mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
20 lines
401 B
Plaintext
20 lines
401 B
Plaintext
```ts
|
|
// CSF 2
|
|
|
|
import { Meta, StoryFn } from '@storybook/vue';
|
|
|
|
import Button from './Button.vue';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
} as Meta<typeof Button>;
|
|
|
|
export const Primary: StoryFn<typeof Button> = (args, { argTypes }) => ({
|
|
props: Object.keys(argTypes),
|
|
components: { Button },
|
|
template: '<Button v-bind="$props" />',
|
|
});
|
|
Primary.args = { primary: true };
|
|
```
|