[Vue3] v-for循环中报错 类型“never”上不存在属性“xxx” 解决方案 const state = reactive({ activities: [] as any[], }); 在循环的数据后面加个 as any[],就可以了