vscode中Cannot find module ‘@/hooks/useTable’ or its corresponding type declarations.Vetur(2307)如何处理

检查 jsconfig.json 或 tsconfig.json
tsconfig.json

1
2
3
4
5
6
7
8
9
{  
"compilerOptions": {
"baseUrl": ".", // 基准目录
"paths": {
"@/*": ["src/*"] // 将 @/ 映射到 src/
}
},
"include": ["src/**/*"]
}