以上代码还是报错Closing tag matches nothing
时间: 2023-07-11 22:53:12 浏览: 435
Go_语言学习代码示例 高清
非常抱歉,我的代码还是有误。这是因为在 Vue 模板中,每个标签都需要有正确的闭合。在上面的代码中,`<div>` 标签没有被正确地闭合,导致编译错误。
以下是修正后的代码:
```html
<el-table-column prop="cycles" label="事项" :formatter="row => {
if (row.cycles.includes('重要')) {
return '<span style=\"color: red;\">' + row.cycles + '</span>';
} else if (row.cycles.includes('紧急')) {
return '<span style=\"color: orange;\">' + row.cycles + '</span>';
} else {
return row.cycles;
}
}">
<template slot-scope="scope">
<div v-html="scope.row.cycles"></div>
</template>
</el-table-column>
```
在这个例子中,我们添加了一个闭合的 `</div>` 标签来修复错误。
请您再次尝试,如果还有问题,请随时告诉我。
阅读全文