1.使用vue-router的this.$router.go(0)在ios微信浏览器中失效vue
解决办法:使用location.reload()替代;或者使用location.href=location.href+'?random=随机数'ios
2.在ios微信浏览器中,输入键盘弹起后会顶起window,收起后不会自动回位,可能会致使一些点击事件错位(视图看着没变化)vue-router
解决办法:给input框加失去焦点事件浏览器
blur(){window.scrollTo(0,0)}
微信