当前位置:   article > 正文

vue中的v-for循环遍历_vue v-for 只循环前两个数组

vue v-for 只循环前两个数组

本篇博客主要介绍如何用vue遍历js文件中的数组和对象

index.html

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>vue</title>
	<link rel="stylesheet" href="style.css">
	<script src="https://cdn.jsdelivr.net/npm/vue"></script>

</head>
<body>
	<!--vue-app是根容器-->
	<div id="vue-app">
	<h1>v-for 循环</h1>
	<!-- 数组下标 -->
	<!-- 
	{{characters[0]}}
	{{characters[1]}}
	{{characters[2]}}
	-->
	
	<!-- 数组遍历 -->
	<ul>
		<li v-for="character in characters">
			{{character}}
		</li>
	</ul>
		
	
		<template v-for="(user,index) in users">
			<h3>{{index}} . {{user.name}}</h3>
			<p>Age - {{user.age}}</p>
		</template>


		<template v-for="(user,index) in users">
			<div v-for="(val,key) in user">
			<p>{{key}} - {{val}}</p>
			</div>
		</template>
	</div>

	<script src="app.js"></script>
	
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

app.js

//实例化VUE对象
new Vue({

	el:"#vue-app",
	//仅限于在vue-app容器下
	data:{
		characters:["Mario","Luffy","Youshi"],
		users:[
				{name:"Henry",age:30},
				{name:"Bucky",age:20},
				{name:"Emily",age:18}
			]
		},
	methods:{

	},

	computed:{
		
	}
});

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/76744
推荐阅读
相关标签
  

闽ICP备14008679号