admin管理员组

文章数量:1342624

I'm trying to use font awesome 5 in my Nuxt project following the official guide below.

However, I'm getting a strange error and can't display what I want.

[Vue warn]: Unknown custom element: - did you register the ponent correctly? For recursive ponents, make sure to provide the "name" option.

Here is how my code looks like:

//index.vue
<template>
    <fa :icon="fas.faAddressBook"  />
    <fa :icon="faGithub" />
</template>
<script>
    import { fas } from '@fortawesome/free-solid-svg-icons'
    import { faGithub } from '@fortawesome/free-brands-svg-icons'
    puted: {
      fas () {
        return fas
      },
      faGithub () {
        return faGithub
      }
    },
and more.....


//nuxt.config.js
  modules: [
    [
      'bootstrap-vue/nuxt', { css: true },
      ['nuxt-fontawesome', {
        ponent: 'fa',

        imports: [
          //import whole set
          {
            set: '@fortawesome/free-solid-svg-icons',
            icons: ['fas']
          },
        ]
      }]
    ],
  ],
  fontawesome: {
    ponent: 'fa',
    imports: [
      {
        set: '@fortawesome/free-solid-svg-icons',
        icons: ['fas']
      },
    ],
  },

Please let me ask for your help. I have spent long enough time on this issue already. Thank you in advance!

I'm trying to use font awesome 5 in my Nuxt project following the official guide below. https://www.npmjs./package/nuxt-fontawesome

However, I'm getting a strange error and can't display what I want.

[Vue warn]: Unknown custom element: - did you register the ponent correctly? For recursive ponents, make sure to provide the "name" option.

Here is how my code looks like:

//index.vue
<template>
    <fa :icon="fas.faAddressBook"  />
    <fa :icon="faGithub" />
</template>
<script>
    import { fas } from '@fortawesome/free-solid-svg-icons'
    import { faGithub } from '@fortawesome/free-brands-svg-icons'
    puted: {
      fas () {
        return fas
      },
      faGithub () {
        return faGithub
      }
    },
and more.....


//nuxt.config.js
  modules: [
    [
      'bootstrap-vue/nuxt', { css: true },
      ['nuxt-fontawesome', {
        ponent: 'fa',

        imports: [
          //import whole set
          {
            set: '@fortawesome/free-solid-svg-icons',
            icons: ['fas']
          },
        ]
      }]
    ],
  ],
  fontawesome: {
    ponent: 'fa',
    imports: [
      {
        set: '@fortawesome/free-solid-svg-icons',
        icons: ['fas']
      },
    ],
  },

Please let me ask for your help. I have spent long enough time on this issue already. Thank you in advance!

Share Improve this question asked Nov 23, 2018 at 9:41 HillHill 1551 gold badge4 silver badges9 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

Ok, I had a similar issue and found that the vue-fontawesome plugin worked although the nuxt-fontawesome one didn't. So, my steps:

npm install --save @fortawesome/vue-fontawesome @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons @fortawesome/free-brands-svg-icons

create a fontawesome.js file in plugins folder and put this in it:

import Vue from 'vue'
import { library, config } from '@fortawesome/fontawesome-svg-core'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import { fas } from '@fortawesome/free-solid-svg-icons'
import { fab } from '@fortawesome/free-brands-svg-icons'

// This is important, we are going to let Nuxt.js worry about the CSS
config.autoAddCss = false

// You can add your icons directly in this plugin. See other examples for how you
// can add other styles or just individual icons.
library.add(fas)
library.add(fab)

// Register the ponent globally
Vue.ponent('font-awesome-icon', FontAwesomeIcon)

then in nuxt.config.js

 css: [
    '@fortawesome/fontawesome-svg-core/styles.css'
  ],

  /*
  ** Plugins to load before mounting the App
  */
  plugins: [
    '~/plugins/fontawesome.js',

  ],

and then to use in any page:

<font-awesome-icon icon="['fab', 'facebook']"  style="font-size: 22px"/>

That's pretty much all here

本文标签: