el-table html标签转义
1 2 3 4 5 6 7 8 9 10 11 | < el-table-column prop = "title" label = "账单名称" width = "180" > </ el-table-column > < el-table-column label = "备注" > < template slot-scope = "scope" > < div v-html = "scope.row.content" ></ div > </ template > </ el-table-column > |