解决Vue前端多空格自动省略为一个空格问题
2022-09-21 本文已影响0人
Coder_JdHo
添加如下标签样式即可
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>