mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 15:01:23 +08:00
34 lines
694 B
Plaintext
34 lines
694 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',
|
|
};
|
|
|
|
<!--
|
|
👇 Render functions are a framework specific feature to allow you control on how the component renders.
|
|
See https://storybook.js.org/docs/7.0/vue/api/csf
|
|
to learn how to use render functions.
|
|
-->
|
|
|
|
<Story
|
|
name="withAnImage"
|
|
render={() => ({
|
|
props: {
|
|
src: {
|
|
default: () => image.src,
|
|
},
|
|
alt: {
|
|
default: () => image.alt,
|
|
},
|
|
},
|
|
template: `<img :src="src" :alt="alt"/>`,
|
|
})} />
|
|
``` |