@userback/vue
Overview
The official NPM module for embedding the Userback Widget into your Vue application.
- Official NPM Package: @userback/vue
- Official GitHub Repository: Userback Vue SDK
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:
- Log in to your Userback workspace.
- Click the Help Center icon in the top-right corner.
- Select Contact us to start a chat with our support team.
Updated 4 days ago
Whatβs Next