后端传入listMaps 前端如何使用v-for 遍历
时间: 2023-06-01 14:06:09 浏览: 259
ListMaps
使用Vue.js中的指令 v-for即可遍历listMaps中的对象或数组。具体代码如下:
<template>
<div>
<ul>
<li v-for="(item, index) in listMaps" :key="index">{{ item }}</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
listMaps: [{ name: 'John', age: 30 }, { name: 'Bob', age: 25 }]
}
}
}
</script>
阅读全文