storybook/docs/snippets/vue/your-component.ts-2.ts.mdx
2022-11-30 20:25:47 +00:00

37 lines
1.0 KiB
Plaintext

```ts
// YourComponent.stories.ts
import YourComponent from './YourComponent.vue';
import type { Meta, StoryObj } from '@storybook/vue';
const meta: Meta<typeof YourComponent> = {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'YourComponent',
component: YourComponent,
};
//👇 This default export determines where your story goes in the story list
export default meta;
type Story = StoryObj<typeof YourComponent>;
/*
*👇 Render functions are a framework specific feature to allow you control on how the component renders.
* See https://storybook.js.org/docs/7.0/vue/api/csf
* to learn how to use render functions.
*/
export const FirstStory: Story = {
render: (args, { argTypes }) => ({
components: { YourComponent },
props: Object.keys(argTypes),
template: '<YourComponent v-bind="$props" />',
}),
args: {
//👇 The args you need here will depend on your component
},
};
```