vue hash模式
window监听hashchange事件:
使用this.$route.push() 监听不到
直接修改location.hash = '#/aa' 可以监听到 $ourter也能监听到
前进后退监听的到
history模式
window.addEventListener('popstate',()=>{console.log(``)}:
使用this.$route.push() 监听不到
history.pushState('','','/newstandard/rootWord') 不但监听不到而且页面不会跳转
前进后退监听的到
再乾坤js里面:
前进,后退,使用this.$route.push()
history.pushState('','','/newstandard/rootWord') 都能监听到