storybook/docs/snippets/vue/component-story-static-asset-with-import.mdx-3.mdx.mdx
2021-11-09 01:41:54 +00:00

26 lines
417 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 {
setup() {
return { image };
},
template: `<img v-bind="image"/>`,
};
}}
</Story>
```