How to update vuetify mdi icons ? (Nuxt.js)

Viewed 1095

I use Vuetify on Nuxt.js. But I can't use some material design icons.

For example <v-icon>mdi-cog</v-icon> shows blank. But other icons work well.

nuxt.config.js

  buildModules: [
    '@nuxtjs/vuetify',
  ],

  vuetify: {
    customVariables: ['~/assets/variables.scss'],
  },

Is it because I have to update it?

And how to update it?

1 Answers

if i don't look wrong, there is not mdi-cog icon, try with mdi-cogs (with the "s" at the end).

Related