New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vfa-picker

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vfa-picker

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

5.9.1
latest
npm
Version published
Weekly downloads
835
-16.33%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

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

<link
  rel="stylesheet"
  href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.css"
/>

Yarn / NPM

yarn add vfa-picker

# or, using NPM

npm install vfa-picker

Then, import and register the component

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.

<!-- include VueJS first -->
<script src="https://unpkg.com/vue@latest"></script>

<!-- use the latest vfa-picker release -->
<script src="https://unpkg.com/vfa-picker@latest"></script>

<!-- or point to a specific  vfa-picker release -->
<script src="https://unpkg.com/vfa-picker@5.9.0"></script>

Then register the component in your javascript:

Vue.use(VueFontAwesomePicker);

FAQs

Package last updated on 02 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts