The vue project removes the scroll bar of the webpage

Before removing the scroll bar:
insert image description here
After removing:
insert image description here

Solution:
Add the following styles in App.vue:
insert image description here

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

Guess you like

Origin blog.csdn.net/weixin_43550562/article/details/126506681