@userback/vue

Overview

The official NPM module for embedding the Userback Widget into your Vue application.

Prerequisites

Before you begin, ensure the following:

  • Userback Workspace: A workspace is needed to collect and manage feedback.
  • Access Token: Retrieve your token via the Code Icon in your workspace.
  • Plan Requirements: Available on all plans.

Installation

Install the Userback package for Vue using the following command:

NPM Installation

npm i @userback/vue

Quickstart

Set up the Userback plugin using App.use to install it into the global scope under $userback:

Vue Example

import UserbackPlugin from '@userback/vue';

createApp(App)
  .use(UserbackPlugin, {
    token: '**Userback Access Token**',
    // Optionally identify logged-in users
    user_data: {
      id: "123456", // Unique user ID
      info: {
        name: "someone", // User's name
        email: "[email protected]" // User's email
      }
    }
  })
  .mount('#app');

For advanced customization, refer to the JavaScript SDK Documentation.


πŸ›Ÿ Support

Need help? Here’s how to get assistance:

  1. Log in to your Userback workspace.
  2. Click the Help Center icon in the top-right corner.
  3. Select Contact us to start a chat with our support team.

What’s Next