使用模板占位时绑定key
来源:3-8 Vue中的列表渲染
微虻
2019-03-20
使用template时会出现如下报错,和userInfo是对象有关系吗?
<template v-for="(item,key,index) of userInfo" :key="key">
<span>{{item}}</span>
<span>{{key}}</span>
<span>{{index}}</span>
</template>
写回答
1回答
-
key要放在template内部元素上,不能直接放在template上,for也一样
012019-03-25
相似问题
template绑key值时报了个警告
回答 2
使用模板占位符 template 报错
回答 1
为什么这里的key需要v-bind绑定?
回答 1
关于模板占位符
回答 1
v-bind:key=‘index’报错
回答 1