mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
18 lines
350 B
Plaintext
18 lines
350 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
<Meta title="img" component={MyComponent}/>
|
|
|
|
<Story
|
|
name="withAnImage">
|
|
{() => {
|
|
return {
|
|
template: `<img src="https://place-hold.it/350x150" alt="My CDN placeholder"/>`,
|
|
};
|
|
}}
|
|
</Story>
|
|
``` |