Migrating from Durandal to Vue: Adding Items to shallowRef Array in Vue.js
While doing the conversion from the KnockoutJS/Durandal application to Vue.js I
had to convert the observableArrays into shallowRef arrays. The reason I used
shallowRefs instead of refs is because I did not need deep reactivity for the
objects and shallowRefs fulfills this requirement.
However, I ran into an