mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:41:07 +08:00
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
```ts
|
|
// YourPage.stories.ts
|
|
|
|
import DocumentScreen from './YourPage.vue';
|
|
|
|
//👇 Imports the required stories
|
|
import * as PageLayoutStories from './PageLayout.stories';
|
|
import * as DocumentHeaderStories from './DocumentHeader.stories';
|
|
import * as DocumentListStories from './DocumentList.stories';
|
|
|
|
import type { Meta, StoryObj } from '@storybook/vue';
|
|
|
|
const meta: Meta<typeof DocumentScreen> = {
|
|
/* 👇 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: 'DocumentScreen',
|
|
component: DocumentScreen,
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof DocumentScreen>;
|
|
|
|
/*
|
|
*👇 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, { argTypes }) => ({
|
|
components: { DocumentScreen },
|
|
props: Object.keys(argTypes),
|
|
template: '<DocumentScreen v-bind="$props" />',
|
|
}),
|
|
args: {
|
|
user: PageLayoutStories.Simple.args.user,
|
|
document: DocumentHeaderStories.Simple.args.document,
|
|
subdocuments: DocumentListStories.Simple.args.documents,
|
|
},
|
|
};
|
|
```
|