vuetify icon not showing
With Vue CLI 3 we have no index.html in the src folder so alternatively you can
npm install --save material-design-icons-iconfont
and import it in the main.js file
import 'material-design-icons-iconfont/dist/material-design-icons.css'
Had this issue with Vuetify 2.1.3 installed via the vuetify-loader 1.2.2
Seems like previous solutions do not work becues the default icons library has changed to mdi-font.
Solution was:
yarn add @mdi/font
And in the file main.js
(or plugins/vueitfy.js
if exists) add this line below the imports
import '@mdi/font/css/materialdesignicons.css'