storybook/docs/snippets/vue/my-component-story-basic-and-props.js.mdx
2021-11-04 23:51:08 +00:00

24 lines
548 B
Plaintext

```js
// MyComponent.stories.js
import MyComponent from './MyComponent.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: 'Path/To/MyComponent',
component: MyComponent,
};
export const Basic = () => ({
components: { MyComponent },
template: '<MyComponent />',
});
export const WithProp = () => ({
components: { MyComponent },
template: '<MyComponent prop="value"/>',
});
```