已经获得了数据(buyList.value),想取出Array(3),目前想到的只有在for里再套一层for请问能直接取出Array(3)吗?用v-for遍历buyList.value[0],直接报错 onUpdated(() => { cart.value = store.state.cartlist; Promise.all( cart.value.map((e) => { return getCart(e[0]); }) ).then((res) => ...
ssstx: @Small_pure v-for里这样写确实可以了。但为啥在setup里写 console.log(buyList.value[0]) ,要么undefined,要么就报错,反正就没一次正常输出过。不加[0],在setup里写console.log(buyList.value)是可以正常输出的 回复2021-07-13 共4 条评论 1 个回答 得票最新 ssstx 10127 发布于 2021-07-16 ...