storybook/docs/snippets/vue/component-story-static-asset-without-import.js.mdx
2021-09-06 22:03:15 +01:00

14 lines
187 B
Plaintext

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