Bootstrap

element表格的有滚动条时产生错位或者偏移

网上有很多的方法、但是始终没效果、但是解决方法找到了
如下:
一、添加css样式

/* 修改element表头错位的问题 */
.el-table--border th.gutter:last-of-type {
   display: block !important;
    width: 17px !important;
}

二、在table中定义一个ref 的命名configurationTable

/* 请求数据之后重新加载表格 */
  this.$refs.configurationTable.$el.style.width = '99.99%'

此外再赠送一个改变滚动条样式的方法

/* 修改滚动条的样式 */
::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: #a1a3a9;
    border-radius: 3px;
}

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;