问题:VUE页面加载滚动条不见
正常情况

问题情况

原因:
原因就是页面跳转后,body被加上了一个style="overflow: hidden;

解决方法
1、为body设置属性overflow: auto !important;

2、第二种:用路由设置属性
router.afterEach((to, from, next) => {
document.querySelector("body").setAttribute("style", "overflow: auto !important;")
});