Files
chatwoot/app/javascript/dashboard/helper/AnalyticsHelper/plugin.js
2023-01-17 21:53:40 -08:00

12 lines
360 B
JavaScript

import analyticsHelper from '.';
export default {
// This function is called when the Vue plugin is installed
install(Vue) {
analyticsHelper.init();
Vue.prototype.$analytics = analyticsHelper;
// Add a shorthand function for the track method on the helper module
Vue.prototype.$track = analyticsHelper.track.bind(analyticsHelper);
},
};