vue3+ts v-for :key item.value呈现红色下划线

220 阅读1分钟

vue3+ts v-for :key item.value呈现红色下划线

image.png

亲测解决方法: 在tsconfig.json文件设置strict:false就可以!

 "compilerOptions": {
    "strict": false,
  }

image.png

保存之后,就不报了

image.png