mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
31 lines
521 B
Plaintext
31 lines
521 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import imageFile from './static/image.png'
|
|
|
|
<Meta title="img" component={MyComponent}/>
|
|
|
|
export const image = {
|
|
src: imageFile,
|
|
alt: 'my image',
|
|
};
|
|
|
|
<Story
|
|
name="WithAnImage">
|
|
{() => {
|
|
return {
|
|
props: {
|
|
src: {
|
|
default: () => image.src,
|
|
},
|
|
alt: {
|
|
default: () => image.alt,
|
|
},
|
|
},
|
|
template: `<img :src="src" :alt="alt"/>`,
|
|
};
|
|
}}
|
|
</Story>
|
|
``` |