mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
9 lines
183 B
Plaintext
9 lines
183 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export const Text = (args, { argTypes }) => ({
|
|
components: { Button },
|
|
props: Object.keys(argTypes),
|
|
template: '<Button v-bind="$props" />',
|
|
});
|
|
``` |