storybook/docs/snippets/vue/list-story-starter.ts-3.ts.mdx
JULO01 1d862d41ec
Docs: Fix Typo in list-story-starter.ts-3.ts.mdx
The Component Object inferred the wrong Type <typeof LoginForm>.  Should be <typeof List> instead :)
2022-08-01 09:43:41 +02:00

28 lines
600 B
Plaintext

```ts
// List.stories.ts
import List from './ListComponent.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>;
// Always an empty list, not super interesting
export const Empty: Story = {
render: (args) => ({
components: { List },
setup() {
return { args };
},
template: '<List v-bind="args">',
}),
};
```