mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 09:31:47 +08:00
17 lines
305 B
Plaintext
17 lines
305 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const WithAnImage = {
|
|
render: () => ({
|
|
template:
|
|
'<img src="https://storybook.js.org/images/placeholders/350x150.png" alt="My CDN placeholder"/>',
|
|
}),
|
|
};
|
|
```
|