vue v-for使用详解
<!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-...
·
<!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>Document</title>
<script src="vue.js"></script>
</head>
<body>
<div id="app">
<p v-for="item in list">
{{ item }}
</p>
<p v-for="(item,i) in list">
索引{{ i }}为{{ item }}
</p>
<p v-for="(item,i) in objectList">
索引为{{ i }},id为{{ item.id }},name为{{ item.name }}
</p>
<p v-for="(value,key,index) in user">
value为{{ value }},key为{{ key }},索引为{{ index }}
</p>
<!-- 迭代数字是从1开始 -->
<p v-for="count in 10">
{{ count }}
</p>
</div>
</body>
<script>
//创建一个vue实例
//当我们导入包之后,在浏览器的内存中就多了一个vue构造函数
var vm = new Vue({
el: '#app',//表示当前我们new的这个vue实例要控制页面上的哪个区域
data: { //data属性中存放的是el中要用到的数据
msg: '我是你爸爸',
list: [1,5,4,7,8,9],
objectList: [
{id:1,name:'haha1' },
{id:2,name:'haha2' },
{id:3,name:'haha3' },
{id:4,name:'haha4' }
],
user: {
id: 1,
name :'hhahahha',
age: 19
}
}
});
</script>
</html>
更多推荐
已为社区贡献4条内容
所有评论(0)