storybook/docs/snippets/vue/component-story-static-asset-cdn.js.mdx
2021-11-06 03:20:29 +00:00

16 lines
375 B
Plaintext

```js
// MyComponent.stories.js
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'img',
};
export const WithAnImage = () => ({
template: '<img src="https://place-hold.it/350x150" alt="My CDN placeholder"/>',
});
```