相关疑难解决方法(0)

如何在 Nuxt 中导入 nuxt.config.js 中的 mdi 图标模块

我已经安装了https://materialdesignicons.com/

npm install @mdi/font
Run Code Online (Sandbox Code Playgroud)

在 nuxt.config.js 文件中,我不确定如何导入图标模块...请帮忙!

export default {
    build: {
      /*
       ** You can extend webpack config here
       */

      extend(config, ctx) {}
    },
    buildModules: [
      // Simple usage
      '@nuxtjs/vuetify',
  
      // With options
    //  ['@nuxtjs/vuetify', { /* module options */ }]
    ]
}
Run Code Online (Sandbox Code Playgroud)

以下是使用 MDI 图标的 Vuetify 选项卡的示例。

<v-icon large color="blue darken-2">mdi-message-text</v-icon>
Run Code Online (Sandbox Code Playgroud)

nuxt.js vuetify.js

5
推荐指数
1
解决办法
8482
查看次数

标签 统计

nuxt.js ×1

vuetify.js ×1