Closed user753 closed 5 years ago
Also arrays
const proxy = proxyState({value: []})
console.log(proxy.state.value[0])
IE11 tracks only existing keys, in other words - keys which are known prior access.
I think you should mention this behavior in docs, so It would possible to know about it without reading proxy-polyfill docs. Does it even make sense to support IE? It looks like a big limitation.
Hopefully, many big companies are dropping IE11 support in a few months, as well as new versions of MobX and Vue are not compatible with IE11, and literally due to this limitation.
I could only ask users to test their stuff in IE, as long as with such awkward tracking it's partially undefined behaviour.
Any way to quick fix it?