• 如何集成 Google 统计分析服务?

    如何集成 Google 统计分析服务?

    在 Nuxt.js 应用中使用 Google 统计分析服务 ,推荐在 plugins 目录下创建 plugins/ga.js 文件:

    1. /*
    2. ** 只在生产模式的客户端中使用
    3. */
    4. if (process.client && process.env.NODE_ENV === 'production') {
    5. /*
    6. ** Google 统计分析脚本
    7. */
    8. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
    9. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
    10. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    11. })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
    12. /*
    13. ** 当前页的访问统计
    14. */
    15. ga('create', 'UA-XXXXXXXX-X', 'auto')
    16. }
    17. export default ({ app: { router }, store }) => {
    18. /*
    19. ** 每次路由变更时进行pv统计
    20. */
    21. router.afterEach((to, from) => {
    22. /*
    23. ** 告诉 GA 增加一个 PV
    24. */
    25. ga('set', 'page', to.fullPath)
    26. ga('send', 'pageview')
    27. })
    28. }

    记得将 UA-XXXXXXXX-X 替换成你的 Google 统计分析服务的跟踪编号。

    然后,我们需要告诉 Nuxt.js 将该插件导入主应用中:

    nuxt.config.js

    1. module.exports = {
    2. plugins: [
    3. { src: '~plugins/ga.js', ssr: false }
    4. ]
    5. }

    恭喜,你的 Nuxt.js 应用成功集成了 Google 的统计分析服务。

    提示: 你可以用相同的方法集成别的统计分析服务。