问题描述:
ctrl加左键点击跳转不能打开目录
解决方法:
一般情况下在根目录下添加jsconfig.json文件,加如下配置

{
    "compilerOptions": {
        "baseUrl": ".",
        "paths": {
            "@/*": ["src/*"]
        },
        "target": "ES6",
        "allowSyntheticDefaultImports": true
    },
    "include": ["src/**/*"],
    "exclude": ["node_modules"]
}
Logo

前往低代码交流专区

更多推荐