mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
docs: add missing web components snippets for env variable section
This commit is contained in:
parent
86dcf1c1e1
commit
29c2285cf4
@ -49,6 +49,7 @@ Then you can access this environment variable anywhere, even within your stories
|
|||||||
'vue/my-component-with-env-variables.2.js.mdx',
|
'vue/my-component-with-env-variables.2.js.mdx',
|
||||||
'vue/my-component-with-env-variables.3.js.mdx',
|
'vue/my-component-with-env-variables.3.js.mdx',
|
||||||
'angular/my-component-with-env-variables.ts.mdx',
|
'angular/my-component-with-env-variables.ts.mdx',
|
||||||
|
'web-components/my-component-with-env-variables.js.mdx',
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
@ -0,0 +1,19 @@
|
|||||||
|
```js
|
||||||
|
// my-component.stories.js
|
||||||
|
|
||||||
|
import { html } from 'lit-html';
|
||||||
|
|
||||||
|
import './my-component';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
title: 'A story using environment variables inside a .env file',
|
||||||
|
};
|
||||||
|
|
||||||
|
const Template = ({ propertyA }) => html`<my-component .propertyA=${propertyA}></my-component>`;
|
||||||
|
|
||||||
|
export const Default = Template.bind({});
|
||||||
|
|
||||||
|
Default.args = {
|
||||||
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
||||||
|
};
|
||||||
|
```
|
Loading…
x
Reference in New Issue
Block a user