mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
13 lines
281 B
Plaintext
13 lines
281 B
Plaintext
```ts
|
|
// CSF 3
|
|
import { Meta, StoryFn } from '@storybook/vue3';
|
|
import { Button } from './Button';
|
|
|
|
const meta: Meta<typeof Button> = { component: Button };
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof Button>;
|
|
|
|
export const Primary: Story = { args: { primary: true } };
|
|
```
|