afc163 8 лет назад
Родитель
Сommit
541128ec96
1 измененных файлов с 11 добавлено и 0 удалено
  1. 11 0
      src/models/global.js

+ 11 - 0
src/models/global.js

@@ -62,4 +62,15 @@ export default {
       };
     },
   },
+
+  subscriptions: {
+    setup({ history }) {
+      // Subscribe history(url) change, trigger `load` action if pathname is `/`
+      return history.listen(({ pathname, search }) => {
+        if (typeof window.ga !== 'undefined') {
+          window.ga('send', 'pageview', pathname + search);
+        }
+      });
+    },
+  },
 };