[Vuejs]-Result vue.js to text input html

0👍

The problem is with :key binding. You don’t have matching key binding.

Change this:

v-for="scan in scans" :key="scan.date"

With this:

v-for="(scan,key) in scans" :key="key"

Now, everything will work fine.

Leave a comment