storybook/docs/snippets/vue/button-story-click-handler-simple-docs.2.js.mdx
2021-11-09 01:41:54 +00:00

20 lines
454 B
Plaintext

```js
// Button.stories.js
import Button from './Button.vue';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Button',
component: Button,
};
export const Text = (args, { argTypes }) => ({
components: { Button },
props: Object.keys(argTypes),
template: '<Button v-bind="$props" />',
});
```