[Vuejs]-Dynamic refs inside v-for loop giving error don't appear in DOM. **Provided element is not within a Document**

0👍

Do not forget that if you use :ref inside v-for then it becomes an Array – so you should change your code

async takeimage(name) {
  let el = this.$refs[name][0]; // <--- use an Array

Leave a comment