From fb05dbb9a9ff7013e15b7a62dfb6e3a5d29f0e5e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ole=20Volds=C3=A6ter?= <ole.voldsater@uib.no>
Date: Thu, 11 Feb 2021 09:08:10 +0100
Subject: [PATCH] fikser meta#273

---
 src/App.vue | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index 85273998..9faff227 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -63,17 +63,6 @@ axios.interceptors.request.use(function (config) {
     return Promise.reject(error);
   });
 
-window.onpopstate = function (event) {
-  if (event.state) {
-    // eslint-disable-next-line
-    app.__vue__._data.article = event.state.article
-    // eslint-disable-next-line
-    app.__vue__._data.search_results = event.state.search_results
-    // eslint-disable-next-line
-    app.__vue__._data.lang = event.state.lang
-  }
-}
-
 function navigate_to_article(self, source) {
   axios.get(api_endpoint + '/' + self.$route.params.lang + '/article/' + self.$route.params.id)
   .then(function(response){
@@ -275,6 +264,18 @@ export default {
     $route() {
       this.$plausible.trackEvent('language', {props: {code: this.$route.params.lang}})
     }
+  },
+  created: function() {
+    let self = this
+    window.onpopstate = function (event) {
+      if (event.state) {
+        console.log(event.state)
+        self.article = event.state.article
+        self.search_results = event.state.search_results
+        self.lang = event.state.lang
+      }
+    }
+
   }
 }
 </script>
-- 
GitLab