Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

vue router popstate

/* there is no such event in late 2021 in the vue router. 
 use the popstate event of the window instance instead. */
 
// vue lifecycle hook
created() {
	window.onpopstate = function(event: PopStateEvent) {
    	event.preventDefault();
        // your logic goes here
    }
}
 
PREVIOUS NEXT
Tagged: #vue #router #popstate
ADD COMMENT
Topic
Name
1+2 =