Skip to main content
Use the Vue SDK when your app is built with Vue 3. It provides a plugin and composables (useKeverdVisitorData) so you can collect device/event data in components.

When to use this SDK

  • Vue 3 apps.
  • You want composables for login/checkout/registration flows.
  • You need get() or verifyLogin from Vue components.

Quick start

1. Install

2. Register plugin

3. Call get() in a component

Use the useKeverdVisitorData composable in any component. Call get() at the moment you want to fingerprint — typically on login, checkout, or form submission.

Basic usage (Composition API)

Trigger on component mount

If you want fingerprinting to happen automatically when a page loads (e.g. a checkout page), use onMounted:

Options API