fpjsPlugin: Plugin = ...

Fingerprint Pro plugin

Example: ```ts import { createApp } from 'vue'; import App from './App.vue'; import fpjsPlugin, { FpjsVueOptions } from '@fingerprintjs/fingerprintjs-pro-vue-v3'; const app = createApp(App); const apiKey = '<YOUR_API_KEY>' app .use(fpjsPlugin, { loadOptions: { apiKey, }, } as FpjsVueOptions) .mount('#app'); ```

Generated using TypeDoc