We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, @mattelen ! Thnak you for component and your work!
Just one feature request - to add slots support at row
vue3-runtime-template/index.js
Line 115 in 4f20a4c
change to
return h(dynamic, {...finalProps}, this.$slots);
Than we can use component like
<VRuntimeTemplate :template="template" > Some slot data <div slot="named">Some named slot data</div> </VRuntimeTemplate>
where the template is like
<div> Some template data <slot /> <slot name="named" /> </div>
Result will be
<div> Some template data Some slot data <div>Some named slot data</div> </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, @mattelen ! Thnak you for component and your work!
Just one feature request - to add slots support
at row
vue3-runtime-template/index.js
Line 115 in 4f20a4c
change to
Motivation
Than we can use component like
where the template is like
Result will be
The text was updated successfully, but these errors were encountered: