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
3.0.0-alpha.12
https://jsfiddle.net/Lb81yw4a/
Create a svg with v-html.
svg
v-html
<svg v-html="'<g></g>'"></svg>
Regarding the reproduction project, you have to open the browser dev tools and inspect the element to see the issue.
A svg that contains the HTML
<div id="app"><div><svg><g></g></svg></div></div>
A svg with an innerHTML attribute.
innerHTML
<div id="app"><div><svg innerHTML="<g></g>"></svg></div></div>
The text was updated successfully, but these errors were encountered:
fix(runtime-dom): should patch svg innerHtml
050042c
fix vuejs#954
Successfully merging a pull request may close this issue.
Version
3.0.0-alpha.12
Reproduction link
https://jsfiddle.net/Lb81yw4a/
Steps to reproduce
Create a
svg
withv-html
.Regarding the reproduction project, you have to open the browser dev tools and inspect the element to see the issue.
What is expected?
A svg that contains the HTML
What is actually happening?
A svg with an
innerHTML
attribute.The text was updated successfully, but these errors were encountered: