storybook/docs/snippets/vue/component-story-static-asset-without-import.js.mdx
2020-12-23 17:00:49 +00:00

10 lines
165 B
Plaintext

```js
// MyComponent.stories.js
export default {
title: "img",
};
export const withAnImage = () => ({
template: '<img src="image.png" alt="my image" />'
});
```