storybook/docs/snippets/vue/csf-3-example-starter.ts-3.ts.mdx
2022-12-05 12:37:36 -07:00

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