Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MatteoGabriele/vue-analytics
Google Analytics plugin for Vue
https://github.com/MatteoGabriele/vue-analytics
analytics google-analytics tracking vue vue-analytics vue-plugin vuejs
Last synced: about 1 month ago
JSON representation
Google Analytics plugin for Vue
- Host: GitHub
- URL: https://github.com/MatteoGabriele/vue-analytics
- Owner: MatteoGabriele
- License: mit
- Archived: true
- Created: 2016-11-02T21:34:19.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-05-27T13:02:52.000Z (over 2 years ago)
- Last Synced: 2024-10-29T15:34:44.890Z (about 2 months ago)
- Topics: analytics, google-analytics, tracking, vue, vue-analytics, vue-plugin, vuejs
- Language: JavaScript
- Homepage: https://matteogabriele.gitbooks.io/vue-analytics/content
- Size: 1.14 MB
- Stars: 1,799
- Watchers: 24
- Forks: 132
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> :warning: Sorry but vue-analytics is not longer maintained. I would suggest you to switch to [vue-gtag](https://github.com/MatteoGabriele/vue-gtag). With love, the guy who made the package.
# vue-analytics
Vue plugin for Google Analytics
## Why should I use it?
The plugin isn't just a wrapper of the Google Analytics API, but provides a solution to issues that most of the time you don't want to deal with or you not even know you have to deal with.
For example:
* Automatic Google Analytics script loading
* Automatic page tracking
* Event batching
* Opt-out from Google Analytics with promise support
* Multiple domain ID tracking system
* Vuex support
* E-commerce API
* Vue error exception tracking system
* Debugging API## Does this library support GA4?
Nope! GA4 is only supported by the new gtag.js library which you can find in the `vue-gtag` package.
This package only uses analytics.js which doesn't provide that feature.## Requirements
Vue ^2.0.0
## Articles
[Google Analytics, GDPR and Vuejs](https://medium.com/@matteo_gabriele/google-analytics-gdpr-and-vuejs-e1bd6affd2b4)
[Vuejs and Google Analytics](https://medium.com/@matteo_gabriele/vuejs-and-google-analytics-689a07e00116)
[Tips & tricks for vue-analytics](https://medium.com/@matteo_gabriele/tips-tricks-for-vue-analytics-87a9d2838915)
## Install
```bash
npm install vue-analytics
```## User guide
* [Get started](/docs/installation.md)
* [How to load Google Analytics](/docs/script-loader.md)
* [Page tracking](/docs/page-tracking.md)
* [Event tracking](/docs/event-tracking.md)
* [Screen tracking](/docs/screen-tracking.md)
* [Event batches](/docs/batch.md)
* [v-ga](/docs/v-ga.md)
* [Cross-domain tracking](/docs/cross-domain-tracking.md)
* [User timings](/docs/user-timings.md#user-timings)
* [Exception tracking](/docs/exception-tracking.md)
* [Require](/docs/require.md)
* [Set](/docs/set.md)
* [Social interactions](/docs/social-interactions.md)
* [Fields](/docs/fields.md)
* [On Analytics script ready](/docs/when-google-analytics-is-loaded.md)
* [Custom methods](/docs/custom-methods.md)
* [E-commerce](/docs/ecommerce.md)
* [Untracked hits](/docs/untracked-hits.md)
* [Vuex](/docs/vuex.md)
* [Turn off during development](/docs/turn-off-development.md)
* [Console logs](/docs/console-logs.md)
* [Opt-out from Google Analytics](/docs/opt-out.md)
* [Custom analytics.js URL](/docs/custom-analytics.md)
* [Debug](/docs/debug.md)Follow me on twitter [@matteo\_gabriele](https://twitter.com/matteo_gabriele)