我的v图标没有显示在Mozilla Firefox 61.0.1(最新版本)上。在以前的mozilla版本上,这是有效的。

<v-icon>mood</v-icon>

现在它只显示“情绪”
firefox - Vuetify图标在Firefox 61.0.1上不起作用-LMLPHP
有人有同样的问题吗?

最佳答案

自动生成的index.html中有一个错误(如果您使用的是vue cli 3和vuetify)

  <link href="https://fonts.googleapis.com/css?family=Roboto:100:300,400,500,700,900|Material+Icons" rel="stylesheet">

应该是
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet">

09-12 06:33