当前位置:网站首页>h5开容器,新页面返回遇到的问题

h5开容器,新页面返回遇到的问题

2022-08-10 15:35:00 LILEILEILOVE

h5调用的原生方法开启新的页面,导致路由历史记录缺失

在新页面中判断路由是否缺失

created(){
    
if(window.history.length === 0){
    
this.$router.push({
    path:"/reload"})
}


新增一个路由作为第一个路由记录

export default{
    
beforeRouteEnter(to,from,next){
    
next(vm=>{
    
vm.$router.replace(from.fullPath)
})
}
}
原网站

版权声明
本文为[LILEILEILOVE]所创,转载请带上原文链接,感谢
https://blog.csdn.net/LILEILEILOVE/article/details/126168548