Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 499 Bytes

user-timings.md

File metadata and controls

27 lines (17 loc) · 499 Bytes

User timings

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

passing parameters in this exact order

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

or use an object literal

this.$ga.time({
  timingCategory: 'category',
  timingVar: 'variable',
  timingValue: 123,
  timingLabel: 'label'
})

Google Analytics docs: user timings