我用的是vue3
首先 label
需要 在前面加上冒号:label
然后后面标题部分 需要用 " ' ' "
外层双引号内层加单引号包裹起来
<el-table-column
:label="'今天是\n星期一'"
prop="fundsRecordedMoney"
/>
然后还需要添加一个css 然后才能 实现
:deep() {
.el-table .cell {
white-space: pre-line;
}
}