You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 8, 2022. It is now read-only.
官方文档
我的问题
ref=固定值
时:<p v-for="item of arr" :key="item" ref="myP">{{item}}</p>
console.log( this.$refs.myP )
输出的应当是文档中说的数组ref=不是固定值
时:<p v-for="item of arr" :key="item" :ref="item">{{item}}</p>
console.log( this.$refs.aaaa)
The text was updated successfully, but these errors were encountered: