0π
β
I think you can try:
const normalObject = JSON.parse(JSON.stringify(objectWithReactivity))
.
0π
Even try a copy using ecmascript
object_reactive
let object = {...object_reactive}
or maybe just javascript
var obj = { a: 1 };
var copy = Object.assign({}, obj);
Source:stackexchange.com