vue.js 双层嵌套 for 遍历方法, 类似php foreach()
主要运用 template 标签,可相当于 php foreach()foreach(lists as $key){//todoforeach($key.自定义字段as k){//todo}}<templatev-for="key in lists" v-cloak><tr>
·
主要运用 template 标签,可相当于 php foreach()
foreach(lists as $key){
//todo
foreach($key.自定义字段 as k){
//todo
}
}
<template v-for="key in lists" v-cloak>
<tr>
<td></td>
<td ></td>
<td ></td>
<td ></td>
</tr>
<tr v-for="v in key.自定义字段">
<td></td>
<td v-text=""></td>
<td v-text=""></td>
<td v-text=""></td>
</tr>
</template>
更多推荐
已为社区贡献3条内容
所有评论(0)