vue项目去掉网页滚动条

点击查看代码
<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
export default {
  name: 'App'
}
</script>
<style lang="scss">
::-webkit-scrollbar {
  width: 0 !important;
}
::-webkit-scrollbar {
  width: 0 !important;height: 0;
}
</style>

posted @ 2022-10-24 11:26  sdibt布谷鸟  阅读(186)  评论(0编辑  收藏  举报