fix vue implicit render function

This commit is contained in:
Yann Braga 2022-05-12 15:14:26 +02:00
parent de741e3e6b
commit 1e9851a8c3
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
export { renderToDOM } from './render';
export { render, renderToDOM } from './render';
export { decorateStory } from './decorateStory';
export const parameters = { framework: 'vue' };

View File

@ -49,7 +49,7 @@ export const render: ArgsStoryFn<VueFramework> = (props, context) => {
}
return {
props: component.props,
props,
components: { [componentName]: component },
template: `<${componentName} v-bind="$props" />`,
};