mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
23 lines
377 B
Plaintext
23 lines
377 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const ExampleStory = {
|
|
args: {
|
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
|
},
|
|
render: (args) => ({
|
|
components: { MyComponent },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: `<MyComponent v-bind="args"/>`,
|
|
}),
|
|
};
|
|
```
|