-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Usage with app in body #7
Comments
Maybe we could have a global variable called Then you could:
|
If we go in this direction, maybe just export That way, one could do: import { getSvgRoot } from "vite-plugin-svg-sprite";
createApp(APP).mount(document.body);
document.body.append(getSvgRoot()); // Put back the SVG sprites inside body |
You are right. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Our app is mounted directly into the document
<body>
.Unfortunately, the
<svg>
spritesheet is already created at this point and gets wiped out by Vue, so icons don't work.I can't change the app mounting point and put it into a child of
<body>
, do you have any advice how to make that setup work?I was thinking maybe the runtime could be a
Vue
plugin that injects itself in the body after the app is mounted?For backward compatibility, this mode of runtime initialization could be optional and only needed when mounting in body directly.
The text was updated successfully, but these errors were encountered: