storybook/docs/snippets/vue/component-story-with-custom-render-function.js.mdx
2022-07-07 18:50:21 +01:00

33 lines
724 B
Plaintext

```js
// MyComponent.stories.js
import Layout from './Layout.vue';
import MyComponent from './MyComponent.vue';
export default {
/* 👇 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,
};
// This story uses a render function to fully control how the component renders.
export const Example = {
render: () => ({
components: { Layout, MyComponent },
template: `
<Layout>
<header>
<h1>Example</h1>
</header>
<article>
<MyComponent />
</article>
</Layout>
`,
}),
};
```