@userback/vue
Quickly integrate Userback via NPM or Yarn with this step-by-step guide and code samples
Overview
The official NPM module for embedding the Userback Widget into your Vue application.
- Official NPM Package: https://www.npmjs.com/package/@userback/vue
- Official GitHub Repository: https://github.com/userback/widget-js/tree/develop/widget-vue
Installation
To install any of the packages and embed Userback, you'll need a Widget Access Token.
NPM Installation
npm i @userback/vue
Quickstart
To set up the plugin, use App.use
to install Userback into the global scope under $userback
.
import UserbackPlugin from '@userback/vue';
createApp(App)
.use(UserbackPlugin, {
token: '**Widget Access Token**'
// identify your logged-in users (optional)
user_data: {
id: "123456", // example data
info: {
name: "someone", // example data
email: "[email protected]" // example data
}
}
})
.mount('#app');
For advanced customization information, refer to our JavaScript SDK documentation.
We hope this guide helps you seamlessly integrate the Userback Widget into your Vue application. If you have any questions or need further assistance, please visit the Userback Help Center for additional resources and support.
Updated 9 months ago
Whatβs Next