storybook/docs/snippets/vue/csf-2-example-starter.ts-2.ts.mdx
2023-01-06 19:15:31 +00:00

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