DeepDiver1975 / vue-mixpanel

A simple Vue.js plugin for Mixpanel

Home Page:https://laurent.tech

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

If you like this plugin do not hesitate to star it or follow me on Github. I've noticed hundreds of people use this one weekly in particular without problem, it'll motivate me to develop more open source stuff, thanks 🙂

vue-mixpanel

A simple Vue.js plugin for Mixpanel

Prerequisite ⚠️

If the browser where events are dispatched has Do Not Track enabled, it won't work. This is due to Mixpanel limitations and is out of control of this plugin.

For testing purpose, don't forget to turn it off yourself.

Installation

Browser

  <script src="https://unpkg.com/vue/dist/vue.js"></script>
  <script src="https://unpkg.com/vue-mixpanel@1.0.6/index.js"></script>

Package Managers

npm install vue-mixpanel --save
yarn add vue-mixpanel --save

// require
var Vue = require('vue')
Vue.use(require('vue-mixpanel'), {
  token: YOUR_TOKEN
})

// import
import Vue from 'vue'
import VueMixpanel from 'vue-mixpanel'
Vue.use(VueMixpanel, {
  token: YOUR_TOKEN
})

How does it work?

  • Initialize it by using the token given by your Mixpanel account in the Vue.use() inside you main.js
  • Start using their public API through this.$mixpanel in your components.

Example Usage

Initialize with config

Vue.use(VueMixpanel, {
  token: YOUR_TOKEN,
  config: {
    debug: true
  }
})

Track an event

this.$mixpanel.track('event name', {
    distinct_id: 'unique client id',
    property_1: 'value 1',
    property_2: 'value 2',
    property_3: 'value 3'
});

Create an alias

this.$mixpanel.alias('distinct_id', 'your_alias');

Increment a numeric property

this.$mixpanel.people.increment('13793', 'games_played');

License

MIT Copyright (c) 2019-present, cmp-cc

About

A simple Vue.js plugin for Mixpanel

https://laurent.tech

License:MIT License


Languages

Language:JavaScript 100.0%