摘要: c错误示例 const state = reactive({ imgList: [], }) state.imgList.push(xxx); 报错 解决 const state = reactive({ imgList: []as any[], }) state.imgList.push(xxx) 阅读全文
posted @ 2022-02-21 10:04 花开丶良人归 阅读(2084) 评论(0) 推荐(0) 编辑
摘要: 使用TypeScript开发 vue3 项目,开发中用for循环渲染UI时,出现这个错误是因为Typescript在执行代码检查时在该对象没有定义相应属性。 我们可以通过字符方式获取对象属性 <el-collapse v-model="activeName" :accordion="accordio 阅读全文
posted @ 2022-02-21 09:55 花开丶良人归 阅读(2294) 评论(0) 推荐(0) 编辑