[Vuejs]-Nuxtjs Fontawesome some icons not able to display

0👍

The correct way to specify the icons in html should be:

  <fa :icon="['fas', 'envelope']" />
  <fa :icon="['fas', 'lock']" />
  <fa :icon="['fas', 'sign-in-alt']" />
  <fa :icon="['fab', 'google']" />
  <fa :icon="['fab', 'linkedin']" />
  <fa :icon="['fab', 'twitch']" />

Leave a comment