v-for不能在以下标签里使用<thead>
<tbody>
<tfoot>
<th>
<td>
表格标签只有<tr>
里可以,但是只有<tr>
或者套前在以上标签里,是不能成功的
在表格标签一般都是嵌套在<table>
里使用的
<table> <tr v-for="(p,index) in list" :key="p.id"> <td>{{ p.id}}</td> </tr></table>
v-for不能在以下标签里使用<thead>
<tbody>
<tfoot>
<th>
<td>
表格标签只有<tr>
里可以,但是只有<tr>
或者套前在以上标签里,是不能成功的
在表格标签一般都是嵌套在<table>
里使用的
<table> <tr v-for="(p,index) in list" :key="p.id"> <td>{{ p.id}}</td> </tr></table>
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
Powered By Z-BlogPHP 1.7.3
Copyright Your WebSite.Some Rights Reserved.