storybook/docs/snippets/vue/list-story-starter.2.js.mdx
2021-02-24 17:56:50 +00:00

17 lines
317 B
Plaintext

```js
// List.stories.js
import List from './ListComponent.vue';
export default {
component: List,
title: 'List',
};
// Always an empty list, not super interesting
const Template = (args, { argTypes }) => ({
components: { List },
props: Object.keys(argTypes),
template: '<list v-bind="$props"/>',
});
```