0👍
✅
According to Vue.js documentation
It is therefore recommended to always have a single root-level, plain element in templates.
Try to wrap oo-upload-template
with tr
and change
<tr v-for="upload in uploads">
<oo-upload :upload="upload"></oo-upload>
</tr>
to
<tr is="oo-upload" v-for="upload in uploads" :upload="upload"></tr>
Source:stackexchange.com