v-for 柔光的暖阳◎ 2021-12-16 19:41 180阅读 0赞 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Title</title> <script src="js/vue-2.4.0.js"></script> </head> <body> <div id="app"> <!--循环普通数组--> <!--<p v-for="item in list">\{ \{item\}\}</p>--> <!--<p v-for="(item,i) in list">索引值:\{ \{i\}\}&\#45;&\#45;&\#45;&\#45;每一项:\{ \{item\}\}</p>--> <!--循环对象数据--> <!--<p v-for="(user,i) in list">id:\{ \{user.id\}\}&\#45;&\#45;&\#45;&\#45;名字:\{ \{user.name\}\}&\#45;&\#45;&\#45;&\#45;索引:\{ \{i\}\}</p>--> <!--循环对象--> <!--注意:在遍历对象身上的键值对的时候,除了有 val key ,在第三个位置还有一个索引--> <!--<p v-for="(val,key,i) in user">值是:\{ \{val\}\}&\#45;&\#45;&\#45;&\#45;键是:\{ \{key\}\}&\#45;&\#45;&\#45;&\#45;索引:\{ \{i\}\}</p>--> <!--迭代数字--> <!--注意:如果使用v-for 迭代数字的话,前面的count 值从1开始--> <p v-for="count in 10">这是第\{ \{count\}\}次循环</p> </div> <script> const vm=new Vue(\{ el:'\#app', data:\{ // list:\[1,2,3,4,5,6\], //循环普通数组 // list:\[ //循环对象数据 // \{id:1,name:'zs1'\}, // \{id:2,name:'zs2'\}, // \{id:3,name:'zs3'\}, // \{id:4,name:'zs4'\}, // \{id:5,name:'zs5'\} // \], // user:\{ //循环对象 // id:1, // name:'托尼', // gender:'男' // \} \}, methods:\{ \} \}) </script> </body> </html> 转载于:https://www.cnblogs.com/lujieting/p/10434785.html
还没有评论,来说两句吧...