摘要: vue3使用proxy,对于对象和数组都不能直接整个赋值。 数组可以 res.forEach(e => { arr.push(e); });或者 const state = reactive({ arr: [] }); state.arr = [1, 2, 3] arr.push(...res); 阅读全文
posted @ 2021-03-15 22:39 羽鱼 阅读(10516) 评论(0) 推荐(0) 编辑