Closed OlesyaKlochko closed 2 years ago
We receive svg images from CMS and dynamic import doesn't works in this case, works only for svg images stored in the project. So is it possible to use external urls somehow?
You can't require() external URL. If you need an inline SVG from a CMS, you have to fetch the SVG data and then inject it with the v-html directive.
require()
v-html
We receive svg images from CMS and dynamic import doesn't works in this case, works only for svg images stored in the project. So is it possible to use external urls somehow?