vue学习 v-for循环普通数组 对象数组 迭代数字
Posted xuchao0506
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue学习 v-for循环普通数组 对象数组 迭代数字相关的知识,希望对你有一定的参考价值。
//html <div id="app"> <p v-for="item in list">{{item}}</p>
<p v-for="(item, i) in list">索引{{i}}---值{{item}}</p>
<p v-for="user in list2">id是{{user.id}}---名字是{{user.name}} </p>
<p v-for="(user,i) in list2">id是{{user.id}}---名字是{{user.name}}---索引是{{i}}</p>
//遍历对象身上的属性和值,除了有key value 在第三个位置上还有一个索引
<p v-for="(key,value,i) in user">键是{{key}}---值是{{value}}---索引是{{i}}</p>
//迭代数字 迭代从1开始
<p v-for="count in 10">这是第{{count}}次循环</p> </div> //script <script> var vm = new Vue({ el:‘app‘, data:{ list:[1,2,3,4,5,6,7],
list2:[
{ id:1, name:‘小白‘ },
{ id:2, name:‘小黑‘ },
{ id:3, name:‘小黄‘ }
],
user:{
id:1,
name:‘小红‘,
gender:‘女‘
}
}, methods:{//methods中定义了当前vue实例中所有可用的方法 } }) </script>
以上是关于vue学习 v-for循环普通数组 对象数组 迭代数字的主要内容,如果未能解决你的问题,请参考以下文章