@
引入src
下某个目录下文件的时候,会出现不能智能提示的情况import { getUser } from ‘@/utils/auth‘
根目录
下添加 jsconfig.json
文件,配置如下{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}
Vue 解决@别名不能识别目录的问题, vscode不出现目录提醒和Ctrl+左键点击不能跳转的问题
原文:https://www.cnblogs.com/leslie1943/p/13493829.html