### VUE3.0 reactive([])的数组是Proxy,这种数据无法用v-for渲染,不清楚怎么解决
### 问题出现的环境背景及自己尝试过哪些方法
### 相关代码
<template>
<ul class="peoples mt20">
<li v-for="(item, index) in forPeopleList" :key="index" >
<div class="words">{{item}}</div>
</li>
</ul>
</template>
setup () {
let forPeopleList = reactive([1,2,3])
return {
...toRef(forPeopleList)
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…