How To Add Custom SVG Icon in Vuetify - Vue
问题 I'm using vuetify 1.1.8 and vue 3.0.0-rc.3. I am trying to use some of the custom SVG icons in my project, which I have designed, instead of default icons from Material Icons or FontAwesome Icons which are supported by vuetify I have tried using vue-svg-loader to load my custom svg icons, and use them as components. Something like this <template> <icon-one></icon-one> </template> <script> import iconOne from './public/iconOne.svg' export default{ components:{ iconOne } } </script> But the