mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
25 lines
587 B
Plaintext
25 lines
587 B
Plaintext
```ts
|
|
// List.stories.ts
|
|
|
|
import List from './ListComponent.vue';
|
|
|
|
import { Meta, StoryFn } from '@storybook/vue3';
|
|
|
|
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 LoginForm>;
|
|
|
|
// Always an empty list, not super interesting
|
|
const Template: StoryFn<typeof LoginForm> = (args) => ({
|
|
components: { List },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: '<list v-bind="args"/>',
|
|
});
|
|
``` |