el-table中使用v-for循环出表头以后border无效
时间: 2023-12-30 07:04:19 浏览: 75
VUE2.0 ElementUI2.0表格el-table自适应高度的实现方法
5星 · 资源好评率100%
你可以尝试在 `el-table` 组件中添加 `border` 属性来设置边框,例如:
```html
<el-table :data="tableData" border>
<el-table-column v-for="item in tableColumns" :key="item.prop" :prop="item.prop" :label="item.label">
</el-table-column>
</el-table>
```
确保 `border` 属性设置在 `el-table` 组件上,而不是在 `el-table-column` 组件上。这样应该能够正确地显示边框。如果问题仍然存在,请提供更多的代码和详细描述,以便我可以更好地帮助你解决问题。
阅读全文