storybook/docs/snippets/vue/list-story-starter.js.mdx
2020-12-23 17:00:49 +00:00

17 lines
316 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"/>',
});
```