我正在尝试从单个组件v-design-row
返回两个tr元素。我知道vue需要将模板元素包装在div中,但由于html表需要的标记结构,我无法将它们包装在div中。当我在tr
组件中添加第二个v-design-row
时,vue不会呈现任何内容。
有人能提出实现这个目标的最佳方法吗?
main.vue
<table class="table">
<thead>
<th>Image</th>
<th>Name</th>
<th>Description</th>
<th>Status</th>
<th>Order</th>
<th>Edit</th>
<th>Delete</th>
</thead>
<tbody v-for="catagory in catagories">
<v-catagory-row :catagory="catagory"></v-catagory-row>
<v-design-row v-for="design in catagory.designs" :design="design"></v-design-row>
</tbody>
</table>
V-设计row.vue
<template>
<tr>
<td><img :src="design.image_directory" :alt="design.name"></td>
<td>{{ design.name }}</td>
<td>
<button class="btn btn-secondary" type="button" data-toggle="collapse" :data-target="'#' + design.identifier" aria-expanded="false" :aria-controls="design.identifier">
<i class="fa fa-plus" aria-hidden="true"></i> Show
</button>
</td>
<td>
<div class="switch">
<input :id="'active'+design.id" v-model="design.active" class="btn-toggle btn-toggle-round-flat" type="checkbox">
<label :for="'active'+design.id"></label>
</div>
</td>
<td>
<button class="btn btn-secondary" type="button">
<i class="fa fa-caret-up" aria-hidden="true"></i>
</button>
<button class="btn btn-secondary" type="button">
<i class="fa fa-caret-down" aria-hidden="true"></i>
</button>
{{ design.sort_order }}
</td>
<td>
<button class="btn btn-secondary" type="button">
<i class="fa fa-pencil" aria-hidden="true"></i>
</button>
</td>
<td>
<button class="btn btn-secondary" type="button">
<i class="fa fa-trash" aria-hidden="true"></i>
</button>
</td>
</tr>
<tr>
<td class="p-0" colspan="7">
<div class="collapse" :id="design.identifier">
<div class="p-3">
{{ design.description }}
</div>
</div>
</td>
</tr>
</template>
答案 0 :(得分:1)
您可以使用多个<tbody>
部分将行分组,如下所示:
<table>
<thead>
<tr> ... </tr>
</thead>
<tbody>
<tr> ... </tr>
<tr> ... </tr>
</tbody>
<tbody>
<tr> ... </tr>
<tr> ... </tr>
</tbody>
</table>
您可以通过使用<tbody>
作为根元素在模板中使用它:
<template>
<tbody>
<tr> ... </tr>
<tr> ... </tr>
</tbody>
</template>
答案 1 :(得分:0)
由于tr
中的第二个v-design-row
包含设计说明,我建议这是整个元素,它应占据一行并拥有自己的布局。
或者,您可以单独说明,并在组件中包含所有其他数据。
另外,声明
vue要求将模板元素包装在div
中
不太正确。模板可以包含任何根元素,而它是单个元素。所以你可以拥有
<template>
<tr>
</tr>
</template>
甚至
<template>
<tr v-if="condition == 1">
</tr>
<tr v-else-if="condition == 2">
</tr>
<tr v-else>
</tr>
</template>