Here is the link
https://codepen.io/anon/pen/pqKrzY
html looks like
<span>items[selected].text: {{ items[selected].text }}</span>
and created:
created() {
setTimeout(() => {
this.items[0] = {
text: "XX"
};
this.items[1] = {
text: "YY"
};
}, 1000)
}
this does not update automatically, if I click the select, it will change though.
And if I remove setTimeout, it will update automatically.