vue中 this.$set的用法

时间:2023-12-26 19:00:25
当vue的data里边声明或者已经赋值过的对象或者数组(数组里边的值是对象)时,向对象中添加新的属性,如果更新此属性的值,是不会更新视图的。

<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: "" },
{ message: "two", id: "" },
{ message: "three", id: "" }
]
};
},
mounted(){
this.items[]={message:"测试",id:""}; //此时对象的值更改了,但是视图没有更新
this.$set(this.items,,{message:"测试",id:""}); //$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, , { message: "更改one的值", id: "" });
},
}
};
</script> <style>
</style>