element-plus表格判断table中的数据是否换行展示,如果换行展示,替换为…
<style lang="less" scoped> ::v-deep(.el-table .cell) { overflow: hidden; // 溢出隐藏 text-overflow: ellipsis; // 溢出用省略号显示 white-space: nowrap; // 规定段落中的文本不进行换行 } </style>