NikolasMelui / analytics-module

Google Analytics Module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Google Analytics

npm version npm downloads Circle CI Codecov Dependencies Standard JS

Google Analytics integration for Nuxt.js with vue-analytics

đź“– Release Notes

Setup

  • Add @nuxtjs/google-analytics dependency using yarn or npm to your project
  • Add @nuxtjs/google-analytics to modules section of nuxt.config.js
{
  modules: [
    // Simple usage
    ['@nuxtjs/google-analytics', {
      id: 'UA-12301-2'
    }]
  ]
}

using top level options

{
  modules: [
    ['@nuxtjs/google-analytics']
  ],

  'google-analytics': {
    id: 'UA-12301-2'
  }
}

Usage

Click here for all options and features of vue-analytics

Differences between vue-analytics and the Nuxt.js implementation:

  • The router instance is already added out of the box (read here if you need to disable it)
  • The id and ua properties have the exact same behaviour. The ua property has been added for backwards compatibily with previous releases

License

MIT License

Copyright (c) - Matteo Gabriele m.gabriele.dev@gmail.com

About

Google Analytics Module

License:MIT License


Languages

Language:JavaScript 97.1%Language:Vue 2.9%