mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
20 lines
369 B
Plaintext
20 lines
369 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
export default {
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Basic = () => ({
|
|
components: { MyComponent },
|
|
template: '<MyComponent />',
|
|
});
|
|
|
|
export const WithProp = () => ({
|
|
components: { MyComponent },
|
|
template: '<MyComponent prop="value"/>',
|
|
});
|
|
``` |