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

19 lines
307 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) => ({
components: { List },
setup() {
return { args };
},
template: '<list v-bind="args"/>',
});
```