vue的@别名不能识别跳转
问题描述:ctrl加左键点击跳转不能打开目录解决方法:一般情况下在根目录下添加jsconfig.json文件,加如下配置{"compilerOptions": {"baseUrl": ".","paths": {"@/*": ["src/*"]},"target": "ES6","allowSyntheticDefaultImports": true},"
·
问题描述:
ctrl加左键点击跳转不能打开目录
解决方法:
一般情况下在根目录下添加jsconfig.json文件,加如下配置
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"target": "ES6",
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}
更多推荐
已为社区贡献3条内容
所有评论(0)