扫码关注官方订阅号
vue2移动端 router-view 弹出后, 滑动页面 有时候会有时会触发上一层滑动,缩放时候也会看见下一层页面,请问怎么解决?谢谢!
业精于勤,荒于嬉;行成于思,毁于随。
已解决,router-view 层设置如下
created(){ document.body.setAttribute("class","hid"); }, destroyed(){ document.body.removeAttribute("class","hid"); }, .hid{ position: fixed; }
你是添加了transition吗??
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
已解决,router-view 层设置如下
你是添加了transition吗??