<template> <el-container style="height: 100%"> <el-table :data="tableData" style="width: 100%"> <el-table-column prop="index" label="考核指标" :header-cell-style="{backgroundColor: '#ff0000'}" width="110"></el-table-column> <el-table-column prop="ymatter" label="负责人" :header-cell-style="{backgroundColor: '#00ff00'}" width="100"></el-table-column> <el-table-column prop="cycle" label="事项" :header-cell-style="{backgroundColor: '#0000ff'}" ></el-table-column> </el-table> </el-container> </template>表格里的内容如何实现手动换行
时间: 2023-07-19 20:45:53 浏览: 110
element中el-container容器与div布局区分详解
在以上的 Vue 表格中实现手动换行,可以使用 `<br>` 标签来手动添加换行符。具体步骤如下:
1. 在要换行的位置插入 `<br>` 标签。
2. 在对应的单元格中使用 `v-html` 指令,将内容渲染为 HTML。
下面是一个示例代码:
```html
<template>
<el-container style="height: 100%">
<el-table :data="tableData" style="width: 100%">
<el-table-column prop="index" label="考核指标" :header-cell-style="{backgroundColor: '#ff0000'}" width="110"></el-table-column>
<el-table-column prop="ymatter" label="负责人" :header-cell-style="{backgroundColor: '#00ff00'}" width="100"></el-table-column>
<el-table-column prop="cycle" label="事项" :header-cell-style="{backgroundColor: '#0000ff'}">
<template slot-scope="scope">
<div v-html="scope.row.cycle"></div>
</template>
</el-table-column>
</el-table>
</el-container>
</template>
<script>
export default {
data() {
return {
tableData: [
{
index: '考核指标1',
ymatter: '负责人1',
cycle: '这是第一行<br>这是第二行<br>这是第三行',
},
{
index: '考核指标2',
ymatter: '负责人2',
cycle: '这是第一行<br>这是第二行<br>这是第三行',
},
],
}
},
}
</script>
```
上面的示例中,使用 `v-html` 指令将 `scope.row.cycle` 中的文本内容渲染为 HTML,其中 `<br>` 标签用于手动添加换行符。
阅读全文