mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
23 lines
451 B
Plaintext
23 lines
451 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) => ({
|
|
components: { MyComponent },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: '<MyComponent v-bind="args"/>',
|
|
});
|
|
|
|
export const Default = Template.bind({});
|
|
Default.args = {
|
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
|
};
|
|
``` |