Appearance
function toRaw<T>(proxy: T): T
获取原始对象
const count = reactive({ a: 1 }); console.log(toRaw(count)); //{ a: 1 }
T
proxy
响应式对象
原始对象