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