Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Translate faq/google-analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
rspt committed Apr 24, 2017
1 parent 11823f6 commit 9874ba7
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions fr/faq/google-analytics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
title: Intégration de Google Analytics
description: Comment intégrer Google Analytics?
---

# Comment intégrer Google Analytics?

Pour utiliser [Google Analytics](https://analytics.google.com/analytics/web/) avec votre application nuxt.js, nous recommandons de créer un plugin `plugins/ga.js`:

```js
import router from '~router'
/*
** Only run on client-side and only in production mode
*/
if (process.env.NODE_ENV === 'production') {
/*
** Include Google Analytics Script
*/
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
/*
** Set the current page
*/
ga('create', 'UA-XXXXXXXX-X', 'auto')
/*
** Every time the route changes (fired on initialization too)
*/
router.afterEach((to, from) => {
/*
** We tell Google Analytic to add a page view
*/
ga('set', 'page', to.fullPath)
ga('send', 'pageview')
})
}
```

> Remplace `UA-XXXXXXXX-X` par votre ID de tracking Google Analytics.
Puis, nous importons le plugin dans notre application pricinpale:

`nuxt.config.js`
```js
module.exports = {
plugins: [
{ src: '~plugins/ga.js', ssr: false }
]
}
```

Voilà, Google Analytics est intégré dans notre application nuxt.js et trackera chaque page vue!

<p class="Alert Alert--nuxt-green"><b>INFO:</b> cette méthode est valable pour n'importe quel autre service de tracking.</p>

0 comments on commit 9874ba7

Please sign in to comment.