Vue的一些坑:页面切换后滚动条就消失了
原因是页面也换后body的overflow设置为hidden在路由这里设置一下就可以咯router.afterEach((to, from, next) => { document.querySelector("body").setAttribute("style", "overflow: auto !important;") });
·
原因是页面切换后body的overflow设置为hidden
在路由这里设置一下就可以咯
router.afterEach((to, from, next) => { document.querySelector("body").setAttribute("style", "overflow: auto !important;") });
更多推荐
已为社区贡献1条内容
所有评论(0)