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

39 lines
1.0 KiB
Plaintext

```ts
// YourComponent.stories.js
import YourComponent from './YourComponent.vue';
import type { Meta, StoryObj } from '@storybook/vue3';
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 Primary: Story = {
render: (args) => ({
components: { YourComponent },
setup() {
return { args };
},
template: '<YourComponent v-bind="args" />',
}),
args: {
//👇 The args you need here will depend on your component
},
};
```