我想在Vue中调用myArray[refVariable]。如何修复Vue/Typescript中的以下错误:Type 'Ref<number>' cannot be used as an index type
myArray[refVariable]
Type 'Ref<number>' cannot be used as an index type
bnl4lu3b1#
使用refVariable.value代替refVariable。
refVariable.value
refVariable
1条答案
按热度按时间bnl4lu3b1#
使用
refVariable.value
代替refVariable
。