<div id="app">
<div>
<button @click="replaceArrayManually">
replaceArrayManually
</button>
<button @click="replaceArrayAsync">
replaceArrayAsync
</button>
</div>
<div>
<button @click="replaceObjectManually">
replaceObjectManually
</button>
<button @click="replaceObjectAsync">
replaceObjectAsync
</button>
</div>
<pre>{{
JSON.stringify(
{
arrayTest,
objectTest
}, null, ' '
)
}}</pre>
</div>
<p>I was hoping to be able to trigger some sort of error when swapping out the values via async, but I guess I can't cause the issue in this context? Perhaps it only happening with vData. :/</p>