mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 15:01:23 +08:00
60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import List from './ListComponent.vue';
|
|
import ListItem from './ListItem.vue';
|
|
|
|
import type { Meta, Story } from '@storybook/vue3';
|
|
|
|
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: 'List',
|
|
component: List,
|
|
} as Meta<typeof List>;
|
|
|
|
/*
|
|
*👇 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 Empty: Story = {
|
|
render: (args) => ({
|
|
components: { List },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: '<List v-bind="args">',
|
|
}),
|
|
};
|
|
|
|
export const OneItem: Story = {
|
|
render: (args) => ({
|
|
components: { List, ListItem },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: `
|
|
<List v-bind="args">
|
|
<list-item/>
|
|
</List>`,
|
|
}),
|
|
};
|
|
|
|
export const ManyItems: Story = {
|
|
render: (args) => ({
|
|
components: { List, ListItem },
|
|
setup() {
|
|
return { ...args };
|
|
},
|
|
template: `
|
|
<List v-bind="args">
|
|
<list-item/>
|
|
<list-item/>
|
|
<list-item/>
|
|
</List>`,
|
|
}),
|
|
};
|
|
``` |