Vue3 重置ref或者reactive属性值
需要重新定义一个对象绑定复制给原对象 。
实例代码:
const data = () => ({
groupId: '',
groupCode: '',
groupName: '',
groupType: '',
});
const formData= ref(data());
//重置对象值
const reset=()=>{
Object.assign(formData, data());
}