vue3 v-for 和 ref 同时使用的问题

原文链接: vue3 v-for 和 ref 同时使用的问题

上一篇: vue3 FLIP 动画实现

下一篇: vite 提交PR 支持CJS引入 [已经被拒了]

https://composition-api.vuejs.org/api.html#ref

使用v-for 循环时, 使用ref总会获取到的是最后的元素, 必须使用函数, 手动赋值,

不能用push, 会在更新的时候造成bug, 元素会重复

  <div v-for="(s,i) in stus" :ref="el => domList2[i]=el">{{s}}</div>

up-cf3d99af8385d6b0e13c8773caded993c44.png

<template>
  <div v-for="s in stus" ref="domList1">{{s}}</div>
  <div v-for="(s,i) in stus" :ref="el => domList2[i]=el">{{s}}</div>
</template>

<script>
  import {ref,nextTick} from 'vue'
  export default {
    name: 'VFor',
    setup() {
      const stus = ref(['a', 'b', 'c', 'd'])
      const domList1 = ref([])
      const domList2 = ref([])

      nextTick(() => {
        console.log('domList1', domList1.value)
        console.log('domList2', domList2.value)
      })
      return {
        stus,
        domList1,
        domList2
      }
    }
  }
</script>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值