storybook/docs/snippets/vue/component-story-with-custom-render-function.ts.mdx
2022-11-17 16:33:22 +01:00

39 lines
946 B
Plaintext

```ts
// MyComponent.stories.js
import type { Meta, StoryObj } from '@storybook/vue'; // Replace with '@storybook/vue3' if you're working with Vue3 project
import Layout from './Layout.vue';
import MyComponent from './MyComponent.vue';
const meta: Meta<typeof MyComponent> = {
/* 👇 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: 'MyComponent',
component: MyComponent,
};
export default meta;
type Story = StoryObj<typeof MyComponent>;
// This story uses a render function to fully control how the component renders.
export const Example: Story = {
render: () => ({
components: { Layout, MyComponent },
template: `
<Layout>
<header>
<h1>Example</h1>
</header>
<article>
<MyComponent />
</article>
</Layout>
`,
}),
};
```