[Vuejs]-Vue – refresh state on clicking back button in the browser

0👍

I fixed it by using document visibilityState.

document.addEventListener("visibilitychange", () => {
       this.pageRedirect=false;
});

Thanks @yoduh and @Jose Fernández for your valuable comments

Leave a comment