mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
21 lines
461 B
Plaintext
21 lines
461 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
title: 'A story using environment variables inside a .env file',
|
|
};
|
|
|
|
const Template = (args, { argTypes }) => ({
|
|
components: { MyComponent },
|
|
props: Object.keys(argTypes),
|
|
template: '<MyComponent v-bind="$props"/>',
|
|
});
|
|
|
|
export const Default = Template.bind({});
|
|
Default.args = {
|
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
|
};
|
|
``` |