Vue v-for标签的使用
1.v-for标签作用是遍历数组或者遍历一个对象2.例子<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>Title</title></head><body><div id="content"><h2&g
·
1.v-for标签作用是遍历数组或者遍历一个对象
2.例子
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div id="content">
<h2>遍历数组</h2>
<!-- <ul>-->
<!-- <li v-for="item in fruits">{{item}}</li>-->
<!-- </ul>-->
<!--除此之外,还可以拿到元素的索引位置-->
<ul>
<li v-for="(item,index) in fruits">{{index}}-{{item}}</li>
</ul>
<h2>遍历对象</h2>
<h3 v-for="(value,key,index) in student">{{value}}-{{key}}-{{index}}</h3>
</div>
<script src="./vue.js"></script>
<script>
const content = new Vue({
el: '#content',
data: {
fruits: ['apple','banana','peach','grape'],
student: {
name: '乔巴',
sex: '男',
price: 50
}
}
})
</script>
</body>
</html>
3.运行·结果
更多推荐
已为社区贡献3条内容
所有评论(0)