添加如下标签样式即可
style="white-space:pre;"
如果在table中不生效,可使用template、span
<el-table-column prop="xxx" label="abc" align="center" min-width="150" show-overflow-tooltip>
<template slot-scope="scope">
<span v-html="scope.row.xxx" style="white-space:pre;"></span>
</template>
</el-table-column>
网友评论