Event tracking

Event tracking can be achieved in different ways, following Google specifications

passing parameters in this exact order

  1. this.$ga.event('category', 'action', 'label', 123)

an object literal is also possible

  1. this.$ga.event({
  2. eventCategory: 'category',
  3. eventAction: 'action',
  4. eventLabel: 'label',
  5. eventValue: 123
  6. })

Google Analytics docs: event tracking

#