问题:最近做的一个后台系统,登录页填写信息之后跳转,右上角显示的个人信息的姓名,用的$router.push的params将登录的信息传递到跳转之后的页面,但是刷新之后的$route.params值为null
解决办法:将登录信息存入localStorage
created(){
if(localStorage.getItem('login')=='null'){
this.infoForm=this.$route.params
localStorage.setItem('login',JSON.stringify(this.$route.params))
}else{
this.infoForm=JSON.parse(localStorage.getItem('login'))
}
},