storybook/docs/snippets/vue/component-story-static-asset-without-import.mdx.mdx
2022-07-07 18:50:21 +01:00

14 lines
320 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
<Meta title="img" component={MyComponent}/>
<!-- Assume image.png is located in the "public" directory. -->
<Story
name="WithAnImage"
render={() => ({
template: '<img src="/image.png" alt="my image" />',
})} />
```