Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/minabtech/vue-fontawesome-picker

Font Awesome Icon Picker Component For Vue.js
https://github.com/minabtech/vue-fontawesome-picker

List: vue-fontawesome-picker

font-awesome-5 vue

Last synced: about 2 months ago
JSON representation

Font Awesome Icon Picker Component For Vue.js

Lists

README

        

## Installation

**First add font awesome css to your project if you don't already have it**

```html

```

### Yarn / NPM

```bash
yarn add vfa-picker

# or, using NPM

npm install vfa-picker
```

Then, import and register the component

```javascript
import Vue from "vue";
import VueFontAwesomePicker from "vfa-picker";

Vue.use(VueFontAwesomePicker);
```

### In the Browser

vfa-picker ships as an UMD module that is accessible in the browser. When loaded
in the browser, you can access the component through the `VueFontAwesomePicker`
global variable. You'll need to load Vue.js & vfa-picker JS.

```html

```

Then register the component in your javascript:

```js
Vue.use(VueFontAwesomePicker);
```