mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
35 lines
853 B
Plaintext
35 lines
853 B
Plaintext
```ts
|
|
// MyComponent.stories.js
|
|
|
|
import type { Meta, Story } from '@storybook/vue'; // Replace with '@storybook/vue3' if you're working with Vue3 project
|
|
|
|
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: Story = {
|
|
render: () => ({
|
|
components: { Layout, MyComponent },
|
|
template: `
|
|
<Layout>
|
|
<header>
|
|
<h1>Example</h1>
|
|
</header>
|
|
<article>
|
|
<MyComponent />
|
|
</article>
|
|
</Layout>
|
|
`,
|
|
}),
|
|
};
|
|
``` |