vue js In IE9 (Internet Explorer 9), which does not support the History API pushState, is it correct to refresh on router-link clicks? Can't you switch pages without refreshing like in Chrome or IE10?
You could check this article and using to create anchor tags for declarative navigation.
You may have noticed that router.push
, router.replace
and router.go
are counterparts of window.history.pushState
, window.history.replaceState
and window.history.go
, and they do imitate the window.history APIs.