vue-rollbar icon indicating copy to clipboard operation
vue-rollbar copied to clipboard

Vue.js plugin for Rollbar

vue-rollbar

npm (scoped with tag) npm Dependencies js-standard-style

Rollbar plugin for Vue.js

Installation

npm install vue-rollbar --save

Usage

var Vue = require('vue');
var Rollbar = require('vue-rollbar');

Vue.use(Rollbar, {
  accessToken: 'YOUR_ROLLBAR_FRONT_TOKEN',
  ...options
});

You can now use Rollbar anywhere in your Vue app.

Vue.rollbar.debug('Yohyo!');
// or in a vue component
this.$rollbar.debug('Yohyo!')

See Rollbar javascript documentation for options