storybook/docs/snippets/vue/list-story-starter.js.mdx
2023-05-25 21:04:33 +01:00

18 lines
260 B
Plaintext

```js
// List.stories.js
import List from './ListComponent.vue';
export default {
component: List,
};
// Always an empty list, not super interesting
export const Empty = {
render: () => ({
components: { List },
template: '<List/>',
}),
};
```