mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
28 lines
592 B
Plaintext
28 lines
592 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Basic = {
|
|
render: () => ({
|
|
components: { MyComponent },
|
|
template: '<MyComponent />',
|
|
}),
|
|
};
|
|
|
|
export const WithProp = {
|
|
render: () => ({
|
|
components: { MyComponent },
|
|
template: '<MyComponent prop="value"/>',
|
|
}),
|
|
};
|
|
``` |