mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:31:05 +08:00
31 lines
671 B
Plaintext
31 lines
671 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { withDesign } from 'storybook-addon-designs';
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
<Meta title="FigmaExample" component={MyComponent} decorators={[withDesign]} />
|
|
|
|
export const Template = (args) => ({
|
|
// Components used in your story `template` are defined in the `components` object
|
|
components: { MyComponent },
|
|
template: 'MyComponent />',
|
|
});
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="Example"
|
|
parameters={{
|
|
design: {
|
|
type: "iframe",
|
|
url: "https://www.wikipedia.org/",
|
|
},
|
|
}}
|
|
>
|
|
{Template.bind({})}
|
|
</Story>
|
|
</Canvas>
|
|
``` |