作为附件,我如何使用v-for或v-repeat或其他内容来执行此操作? 谢谢你的帮助。
How to render a table with two data per tr
JSON数据格式: [ '一个&#39 ;, ' B&#39 ;, ' C' ]
答案 0 :(得分:0)
这是一个CSS问题,你只需正常渲染表格。关键的CSS是:
tr {
float: left;
}
tr:nth-child(2n+1) {
clear: left;
}