Vue的一些坑:页面切换后滚动条就消失了

原因是页面也换后body的overflow设置为hidden

在路由这里设置一下就可以咯

router.afterEach((to, from, next) => { document.querySelector("body").setAttribute("style", "overflow: auto !important;") });

你可能感兴趣的:(Vue的一些坑:页面切换后滚动条就消失了)