當vue的data裏邊聲明或者已經賦值過的對象或者數組(數組裏邊的值是對象)時,向對象中添加新的屬性,若是更新此屬性的值,是不會更新視圖的。vue
<template> <div id="app2"> <p v-for="item in items" :key="item.id">{{item.message}}</p> <button class="btn" @click="handClick()">更改數據</button> </div> </template> <script> export default { data() { return { items: [ { message: "one", id: "1" }, { message: "two", id: "2" }, { message: "three", id: "3" } ] }; }, mounted(){ this.items[0]={message:"測試",id:"4"}; //此時對象的值更改了,可是視圖沒有更新 this.$set(this.items,0,{message:"測試",id:"4"}); //$set能夠觸發更新視圖 console.log(this.items) }, methods: { // 調用方法:Vue.set( target, key, value ) // target:要更改的數據源(能夠是對象或者數組) // key:要更改的具體數據 // value :從新賦的值 handClick() { //Vue methods中的this 指向的是Vue的實例,這裏能夠直接在this中找到items this.$set(this.items, 0, { message: "更改one的值", id: "0" }); }, } }; </script> <style> </style>