Font Awesome SVG Icons Component for Vue.js

Awesome SVG icon plugin for Vue.js, with Font Awesome icons, included. Font Awesome 5 has separated all the icons into several packages. Vue-Awesome is built on all free icons, which includes all free icons from 3 icon packs: regular, solid, and branding. Since the solid pack contains the largest number of icons, we organize all the Vue-Awesome icons.

font awesome icons, font awesome npm, font awesome vue, font awesome cdn, vue font awesome icons list, how to use font awesome icons

How to make use of it:

Install and download:

$ npm install vue-awesome

1. Import an icon of your choice or all icons as follows:

// import flag icon
import 'vue-awesome/icons/flag'

// import all icons
import 'vue-awesome/icons'

2. Import and register the component.

import Icon from 'vue-awesome/components/Icon'
Vue.component('v-icon', Icon)
// or locally
export default {
  components: {
    'v-icon': Icon
  }
}

3. Use symbols as components:

<v-icon name="flag" />

4. Props available.

name: {
  type: String,
  validator (val) {
    if (val && !(val in icons)) {
      warn(
        `Invalid prop: prop "name" is referring to an unregistered icon "${val}".\n` +
          `Please make sure you have imported this icon before using it.`,
        this
      )
      return false
    }
    return true
  }
},
title: String,
scale: [Number, String],
spin: Boolean,
inverse: Boolean,
pulse: Boolean,
flip: {
  validator (val) {
    return val === 'horizontal' || val === 'vertical' || val === 'both'
  }
},
label: String,
tabindex: [Number, String]

Vue Font Awesome Component Plugin/Github, vue font awesome add all icons


See Demo And Download

Official Website(Justineo): Click Here

This superior jQuery/javascript plugin is developed by Justineo. For extra Advanced Usages, please go to the official website.

Related Posts

Responsive-Multiple-Selection-Combo-Box-using-Bootstrap-3

Responsive Multiple Selection Combo Box using Bootstrap 3 | MagicSuggest

MagicSuggest is an easy-to-use jQuery plugin for creating a combo menu that allows you to select multiple items from a dropdown list with typing and auto-complete support….

material-design-tab-vanilla-js

Material Design Inspired Tab UI In Vanilla JavaScript

Material Design tab vanilla JS implements a material design-inspired tab component with a click ripple effect and an active sliding menu cursor. Must Read: Responsive Accessible Tabs…

countdown-timer-app

Simple Countdown Timer App In jQuery

The countdown is a front-end application that allows starting the countdown with two options: set a target date or write the number of countdown days. A countdown…

html5-animate-js

Add Animation to Your HTML5 Pages | animate.js

animate.js is a small JavaScript library that provides a convenient way to apply CSS animations powered by Animate.css to DOM elements without writing any CSS. Easily apply…

vue-responsive-parallax-cards

Responsive Hover Parallax Cards With Vuejs

Vue Responsive Parallax Cards Hover Create response cards with a scroll-triggered parallax effect in your Vue.js application. Must Read: jQuery Sliding Display Your Content Like a Deck…

pure-css-tabs-responsive

Responsive Pure CSS Only Accordion & Tabs Component

Responsive pure CSS accordion tabs and tabs will automatically convert to a vertical accordion interface on mobile devices. Must Read: Create Dynamic Accordion Giving JSON Data Using…