Object.assign
这个最方便
let obj = reactive({ a: {} });
Object.assign(obj,{a:2, b:3})
直接用 ref
let list = ref([{ id: 1, name: 'Andy' }]);
const checkBtn = () => {
list.value = [{ id: 1, name: 'Andy' }];
list.value.push({ id: 2, name: 'Lucy' });
};
直接用 reactive
let obj = reactive({ a: {} });
obj.a = { ...obj.a, ...newdata };
toRefs
看文档:https://vuejs.org/api/reactivity-utilities.html#torefs