知性小土豆

文章
5
资源
0
加入时间
3年0月21天

Vue3.0中如何动态设置ref

html中:<div :ref="`Ref${index}`"></div>script中:import { getCurrentInstance } from "vue";const ctx = getCurrentInstance();需要使用动态ref的函数中:ctx.refs[`Ref${index}`].function();