vue elementUI去掉某个表格边框 修改el-table样式

  • Post author:
  • Post category:vue




vue elementUI去掉某个表格边框 修改el-table样式

1.仅改变某个表格样式,不改变其他表格样式。给el-table添加 class=“company-table”

      <el-table :data="tableData" :show-header="false" class="company-table">
        <el-table-column prop="name" label="公司"/>
        <el-table-column prop="" label="操作" width="90" />
      </el-table>

样式如下

方法一:在style中添加scoped时,需要添加深度选择器::v-deep才能改变样式

<style lang="scss" scoped>
	::v-deep .company-table td,
	::v-deep .company-table th.is-leaf {
	  border-bottom: 1px solid transparent;
	}
</style>

方法二:直接在把样式写在style中,不需要添加scoped

<style lang="scss">
	.company-table td,
	.company-table th.is-leaf {
	  border-bottom: 1px solid transparent;
	}
</style>



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