摘要:
用vue3+ts脚手架搭建项目的时候,组件会报错。 Unresolved function or method defineProps(); 编辑器报红,最后发现是因为没有引入defineProps这个函数。 解决方法: import {defineProps} from 'vue' 引入defin 阅读全文
摘要:
使用vite搭建vue3脚手架的时候,发现main.ts中引入App.vue编辑器会报错,但是不影响代码运行。 报错信息:TS2307: Cannot find module './App.vue' or its corresponding type declarations. 翻译过来是找不到模块 阅读全文