实现效果:
window点击ctrl(MAC点击command)+通过import引入的文件、方法等到,跳转到其定义的页面
方案:在项目根目录新建文件jsconfig.json并添加一下代码(添加配置后,需要重启vscode才能生效)
{
"allowJs": true,
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/": ["./src/"]
}
},
"include": ["src/*/"],
"exclude": ["node_modules"],
}