本文环境:windows7、vue2.9.6,该方法适用于所有品牌的电脑。

vue.js去掉滚动条的方法:

1、设置滚动条:

overflow-x: scroll; 
    white-space: nowrap;

2、隐藏滚动条:

   ::-webkit-scrollbar {
     width: 0 !important;
   }
   ::-webkit-scrollbar {
     width: 0 !important;height: 0;
   }

以上就是vue.js怎么去掉滚动条的详细内容,更多请关注其它相关文章!