storybook/docs/snippets/vue/button-story-click-handler-simple-docs.2.js.mdx
2021-02-24 17:56:50 +00:00

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