el-table隐藏横纵滚动条并且可以滚动(个人记录)

// template 
<div v-if="alarmList.length>0"
             class="table-box">
          <el-table :data="alarmList"
                    size='mini'
                    height="260"
                    style="width: 100%">
            ...
          </el-table>
        </div>
//

// css 
 .table-box {
    ::v-deep .is-scrolling-none {
      overflow: hidden;
      overflow-y: auto;
      overflow-x: scroll;
    }
    ::v-deep .is-scrolling-none::-webkit-scrollbar {
      display: none;
    }
    ::v-deep.el-table--scrollable-y ::-webkit-scrollbar {
      display: none;
    }
    ::v-deep.el-table--scrollable-x ::-webkit-scrollbar {
      display: none;
    }
  }


版权声明:本文为weixin_52280058原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。