Vue v-for 循环数组、对象、数字时 参数的顺序


<div id="example"> <!--循环数字--> <span v-for="count in 10">{{count}}</span> <!--循环数组--> <span v-for="(u,i) in user">--每个数组值--{{u}}--索引地址index--{{i}}</span> <!--循环对象数组--> <span v-for="(u,i) in object">---{{u.a}}---索引index--{{i}}</span> <!--循环对象--> <span v-for="(v,k,i) in app">---值value---{{v}}---键key---{{k}}----索引index----{{i}}</span> </div>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwssjj.html