vue获取通过for循环动态生成的ref时间:2025-03-21 09:54:17<p v-for="(item,i) in refArr" :ref="`list${i}`" @click="getRef(i)">ref:{{i}}</p> getRef(i) { this.$refs[`list${i}`][0].style.background = 'red'; },