euwei7 opened this issue a year ago · 1 comments
我使用vscode开发,在components里建立自定义组件,组件没有类型提示,鼠标移到组件名上显示any,导致在组件上设置props时,没有提示。
page/index.js,鼠标移动到Footer组件名上
mac
pnpm
感谢反馈,这是因为<Footer />组件引入使用了vite的别名 import Footer from '@/components/Footer.vue' 导致vscode无法定位到文件目录 最新版已经修改 你也可以将jsconfig.json文件,修改成下面
<Footer />
import Footer from '@/components/Footer.vue'
jsconfig.json
{ "compilerOptions": { "baseUrl": ".", "paths": { "@/*": ["./src/*"] }, "types": [ "@dcloudio/types", "miniprogram-api-typings", "mini-types" ] }, }