Bootstrap

vue项目去掉网页滚动条

去掉滚动条前:
在这里插入图片描述
去掉后:
在这里插入图片描述

解决办法:
在App.vue里增加以下样式:
在这里插入图片描述

<style lang="scss">
::-webkit-scrollbar {
  width: 0 !important;
}
::-webkit-scrollbar {
  width: 0 !important;height: 0;
}
</style>

;