Social interactions

You can use social interaction analytics to measure the number of times users click on social buttons embedded in webpages. For example, you might measure a Facebook “Like” or a Twitter “Tweet”.

is possible to impletement this feature passing parameters in this exact order

  1. this.$ga.social('Facebook', 'like', 'http://myownpersonaldomain.com')

also possible to pass an object literal

  1. this.$ga.social({
  2. socialNetwork: 'Facebook',
  3. socialAction: 'like',
  4. socialTarget: 'http://myownpersonaldomain.com'
  5. })

Google Analytics docs: social interactions