已解决,router-view 层设置如下 data () { return { y:0 } }, created(){ this.y = document.body.scrollTop document.body.setAttribute("class","hid"); }, destroyed(){ document.body.removeAttribute("class","hid"); document.body.scrollTop = this.y }, //样式中 .hid{ position: fixed; }
已解决,router-view 层设置如下