百度找了一些解决方法,有修改nginx配置啥的,有路由修改为hash模式啥的,个人能力有限没能成功,最后大佬提供了一个思路,最后解决的这个难题,在其他系统应用完美运行,感谢大佬!!!
通过location.hash方式先取出你输入的路径,是#之后的路径内容,进入到默认页面后继续定位到指定页面,虽然有点治标不治本的意思,但是解决了当前的难题。还真是不错
下面为App.vue中的修改后的代码
<script>
export default {
name: 'App',
data(){
return{
route:''
}
},
beforeMount(){
this.route=location.hash.slice(1)
},
created(){
},
mounted(){
setTimeout(()=>{
this.$router.push(this.route)
},500)
}
}
</script>