vue-woopra
v1.1.0
Published
Plugin to integrate Woopra on vue.js projects
Downloads
2
Maintainers
Readme
vue-woopra
Plugin to integrate Woopra on vue.js projects
Installation
npm require vue-woopra
Usage
Import vue-woopra on your project, and add the plugin on Vue.js with the global method Vue.use()
import VueWoopra from 'vue-woopra'
Vue.use(VueWoopra)
Configuration
To configure vue-woopra, you can pass your settings on the Vue.use()
global method.
Vue.use(VueWoopra, {configs: {domain: 'mywebsite.ca'}, identify: {email: '[email protected]'})
Configs
The Woopra tracker can be customized using the configs objects. Find the list of options : Configuration on Woopra
configs: {domain: 'mywebsite.ca', cookie_name: 'mywebsite_tracker'}
Identify
To identify a customer, you need to send their email address to Woopra as a custom visitor property. You can add any properties you want to save for this current visitor.
identify: {email: '[email protected]', username: 'MY_VISITOR', is_buyer: true, products_on_cart: 5}
Directives availables
woopra-identify
To identify a customer, you need to send their email address to Woopra as a custom visitor property. You can add any properties you want to save for this current visitor. If you added the object identify on the configuration of the plugin, do not use the directive.
<div id="app" v-woopra-identify="{email: '[email protected]', username: 'MY_VISITOR', is_buyer: true, products_on_cart: 5}"></div>
woopra-track
To track an event, you can use the woopra-track directive. It requires as argument an array with two keys. The first key is the name of the event that you are tracking. The second is an object of any properties you want to track with the event. Find more informations on the Woopra Javascript SDK documentation
<p v-woopra-track="['MY_CUSTOM_EVENT_NAME', {propertie_one: 'value', propertie_two: 'value'}]">Active my account</p>
We track for now only if the user clicks on the item
Methods availables
Vue-woopra add in your vue instance two methods
identify(user_object)
This method is identical to the woopra-identify directive. The only argument must be an object with your visitor property.
this.$woopra.identify({email: '[email protected]', username: 'MY_VISITOR', is_buyer: true, products_on_cart: 5})
track(event_name, properties)
This method is identical to the woopra-track directive, but with two arguments. The first argument must be a string for your event name. The second argument must be an object of any properties you want to track with the event.
this.$woopra.track('MY_CUSTOM_EVENT_NAME', {propertie_one: 'value', propertie_two: 'value'})