[V2] Router navigate with pushstate = false does not change url

I use Framework7-Vue V2.
I want to change url without pushing state in browser
The following code reloads the page without changing url.

this.$f7router.navigate('/somePage', {
  pushState: false,
  reloadAll: true,
  ignoreCache: true
})

If I set pushState to true, then it will change url and also load the new page.
What should I do to change url without pushing state in browser?

If pushState is disabled then it WILL NOT change the browser url. Changing the browser url means changing browsers state. Using reloadAll or reloadCurrent causes replaceState instead of pushState

1 Like