vue key值 报错 Avoid using non-primitive value as key, use string/number value instead.

<!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>
</head>
<style>

 

</style>
<script src="https://cdn.bootcss.com/vue/2.6.10/vue.js"></script>
<script src="https://cdn.bootcss.com/axios/0.18.0/axios.js"></script>
<link href="https://cdn.bootcss.com/twitter-bootstrap/3.3.1/css/bootstrap.css" rel="stylesheet">

 

<body>
<div id="app">
 
ID:<input type="text" v-model='name'>
NAME:<input type="text" v-model='id'>
<button @click='add'>添加</button>
 
<the p-v-for = "(item, index) in List": Key = "item.id">                             // write-only item being given, can not be tied to objects
{{item.name}}-----{{item.id}} <input type="checkbox" value="">
</p>
</div>




<script>
was vm = new Vue ({
the '#app'
data: {
name:'',
id:'',
list:[
{Id: 1, name: 'Hsiao Ming'}, {id: 2, name: 'Hsiao Ming 2'}, {id: 3, name: 'Hsiao Ming 3'}
]
},
methods: {
add(){
this.list.unshift({name:this.name,id:this.id})
}
}

 

});
</script>
</body>

 

</html>

Guess you like

Origin www.cnblogs.com/xiannv/p/10967531.html