mounted() {
//проверка при загрузке
axios
.get(url + '/lk_src/checkAuth.php')
.then(response => {
this.info = response.data;
console.log(this.info);
if (this.info == 'NoAuthorization') {
this.$store.dispatch('auth/logout').catch(()=>{});
this.$router.push('/login').catch(()=>{});
}
})
});
//проверка авторизации при любом действии
document.addEventListener("click", () => {
axios
.get(url + '/lk_src/checkAuth.php')
.then(response => {
this.info = response.data;
console.log(this.info);
if (this.info == 'NoAuthorization') {
this.$store.dispatch('auth/logout').catch(()=>{});
this.$router.push('/login').catch(()=>{});
}
})
});
},
mounted() {
//проверка авторизации при любом действии
document.addEventListener("click", function() {
axios
.get(url + '/lk_src/checkAuth.php')
.then(response => {
this.info = response.data;
console.log(this.info);
if (this.info == 'NoAuthorization') {
this.$store.dispatch('auth/logout').catch(()=>{});
this.$router.push('/login').catch(()=>{});
}
})
});
},