Package Exports
- @fortawesome/vue-fontawesome
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@fortawesome/vue-fontawesome) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-fontawesome
Font Awesome 5 Vue component
This API is in early alpha stages and is likely to change
Installation
$ npm i --save @fortawesome/fontawesome
$ npm i --save @fortawesome/vue-fontawesome
or
$ yarn add @fortawesome/fontawesome
$ yarn add @fortawesome/vue-fontawesome
Usage
The basics
The icon
property of the FontAwesomeIcon
component can be used in the following way:
Shorthand that assumes a prefix of fas
:
<font-awesome-icon icon="spinner" />
Explicit prefix (note the Vue bind shorthand because this uses an array):
<font-awesome-icon :icon="['far', 'spinner']" />
Explicit icon definition (this is pseudo-code, see examples below for more detail):
import { faCoffee } from '@fortawesome/fontawesome-free-solid'
<font-awesome-icon :icon="getIcon" />
function getIcon () {
return faCoffee
}
Using it with Vue
Using an explicit icon offers the advantage of only bundling the icons that you use in your final bundled file. This allows us to subset Font Awesome's thousands of icons to just the small number that are normally used.
Import the specific icons that you need:
<template>
<div id="app">
<font-awesome-icon :icon="icon" />
</div>
</template>
<script>
import FontAwesomeIcon from '@fortawesome/vue-fontawesome'
import { faCoffee } from '@fortawesome/fontawesome-free-solid'
export default {
name: 'FAExample',
computed: {
icon () {
return faCoffee
}
},
components: {
FontAwesomeIcon
}
}
</script>
It can be tedious to always import the icons individually so a library can be configured and shorthand can be used when rendering the icon.
Define a library that can be used without explicit imports:
App.js
import Vue from 'vue'
import Main from './Main.vue'
import fontawesome from '@fortawesome/fontawesome'
import brands from '@fortawesome/fontawesome-free-brands'
import { faSpinner } from '@fortawesome/fontawesome-free-solid'
fontawesome.library.add(brands, faSpinner)
new Vue({
el: '#app',
render: h => h(Main)
})
FAExample.vue
<template>
<div id="app">
<!-- If you are using the "Solid" style you can simply use the icon name -->
<font-awesome-icon icon="spinner" />
<!-- Using another style needs a prefix in the following array format -->
<font-awesome-icon :icon="['fab', 'font-awesome']" />
</div>
</template>
<script>
export default {
name: 'FAExample',
components: {
FontAwesomeIcon
}
}
</script>
Features
Basic
Spin and pulse animation:
<font-awesome-icon icon="spinner" spin />
<font-awesome-icon icon="spinner" pulse />
Fixed width:
<font-awesome-icon icon="spinner" fixed-width />
Border:
<font-awesome-icon icon="spinner" border />
List items:
<font-awesome-icon icon="spinner" list-item />
Flip horizontally, vertically, or both:
<font-awesome-icon icon="spinner" flip="horizontal" />
<font-awesome-icon icon="spinner" flip="vertical" />
<font-awesome-icon icon="spinner" flip="both" />
Size:
<font-awesome-icon icon="spinner" size="xs" />
<font-awesome-icon icon="spinner" size="lg" />
<font-awesome-icon icon="spinner" size="6x" />
Rotate:
<font-awesome-icon icon="spinner" rotate="90" />
<font-awesome-icon icon="spinner" rotate="180" />
<font-awesome-icon icon="spinner" rotate="270" />
Pull left or right:
<font-awesome-icon icon="spinner" pull="left" />
<font-awesome-icon icon="spinner" pull="right" />
Advanced
Power Transforms:
<font-awesome-icon icon="spinner" transform="shrink-6 left-4" />
<font-awesome-icon icon="spinner" :transform="{ rotate: 42 }" />
Composition:
<font-awesome-icon icon="coffee" :compose="['far', 'circle']" />
Symbols:
<font-awesome-icon icon="edit" symbol />
<font-awesome-icon icon="edit" symbol="edit-icon" />