Vue Element Ui中 Table 表格 数据居中样式设置

只需要在对应的页面样式加上 下面的代码就可以实现 Table 表格数据居中的效果!

<style scoped>
	/deep/.el-table th > .cell {
	  text-align: center;
	}
	/deep/.el-table .cell {
	  text-align: center;
	}
</style>

/deep/的意思大概为深入的,深远的。可以修改element Ui 的Table 表格的样式!
就是那么简单!


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