Vue里的小技巧笔记记录

78 阅读1分钟

[toc]

Vue里的小技巧笔记记录

Vue3中更新reactive()的方法

setup(){
	const obj = reactive({a: 1,b: 2})
	onMounted(()=>{
		const newObj = reactive({c: 2, d:3});
		Object.assign(obj, newObj);
	})
}