User timings

User timing measurement can be achieved in different ways, following Google specifications

passing parameters in this exact order

  1. this.$ga.time('category', 'variable', 123, 'label')

or use an object literal

  1. this.$ga.time({
  2. timingCategory: 'category',
  3. timingVar: 'variable',
  4. timingValue: 123,
  5. timingLabel: 'label'
  6. })

Google Analytics docs: user timings

#