mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
23 lines
586 B
Plaintext
23 lines
586 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import List from './ListComponent.vue';
|
|
|
|
import { Meta, StoryFn } from '@storybook/vue';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'List',
|
|
component: List,
|
|
} as Meta<typeof List>;
|
|
|
|
// Always an empty list, not super interesting
|
|
const Template: StoryFn<typeof List> = (args, { argTypes }) => ({
|
|
components: { List },
|
|
props: Object.keys(argTypes),
|
|
template: '<list v-bind="$props"/>',
|
|
});
|
|
``` |