mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
17 lines
317 B
Plaintext
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"/>',
|
|
});
|
|
``` |