I have installed the https://materialdesignicons.com/ with
npm install @mdi/font
In nuxt.config.js file, I am not sure how to import the icons module... Please help!
export default {
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) {}
},
buildModules: [
// Simple usage
'@nuxtjs/vuetify',
// With options
// ['@nuxtjs/vuetify', { /* module options */ }]
]
}
Here is an example of a Vuetify tab using a MDI icon.
<v-icon large color="blue darken-2">mdi-message-text</v-icon>