mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
27 lines
731 B
Plaintext
27 lines
731 B
Plaintext
```js
|
|
// YourPage.stories.js
|
|
|
|
import DocumentScreen from './DocumentScreen.vue';
|
|
|
|
import * as PageLayoutStories from './PageLayout.stories';
|
|
import * as DocumentHeaderStories from './DocumentHeader.stories';
|
|
import * as DocumentListStories from './DocumentList.stories';
|
|
|
|
export default {
|
|
title:'DocumentScreen',
|
|
component: DocumentScreen
|
|
};
|
|
|
|
const Template = (args, { argTypes }) => ({
|
|
props: Object.keys(argTypes),
|
|
components: { DocumentScreen },
|
|
template: '<DocumentScreen v-bind="$props"/>'
|
|
});
|
|
|
|
export const Simple = Template.bind({});
|
|
Simple.args = {
|
|
user: PageLayoutStories.Simple.args.user,
|
|
document: DocumentHeaderStories.Simple.args.document,
|
|
subdocuments: DocumentListStories.Simple.args.documents
|
|
};
|
|
``` |