Hi,
Any plan to support Vue 3 and Vite ?
I know you recommend using vue-svg-inline-plugin in the README, but that package is quite different.
With the recommended package, I have to import the SVG in the <script>, define it as a component in the option API or use defineComponent in setup and then use it as a Vue component in the <template>.
I liked this plugin because it still used plain <img /> tag instead of Vue component, and I could use the SVG directly instead of have to do 2 prior step every time (import, define component).
Hi,
Any plan to support Vue 3 and Vite ?
I know you recommend using vue-svg-inline-plugin in the README, but that package is quite different.
With the recommended package, I have to import the SVG in the
<script>, define it as a component in the option API or usedefineComponentin setup and then use it as a Vue component in the<template>.I liked this plugin because it still used plain
<img />tag instead of Vue component, and I could use the SVG directly instead of have to do 2 prior step every time (import, define component).