vue起别名之后,无法智能提示

添加jsconfig.json文件
{
“compilerOptions”: {
“baseUrl”: “./”,
“paths”: {
“@/": ["./src/”],
},
“target”: “ES6”,
“module”: “commonjs”,
“jsx”: “react”,
“allowSyntheticDefaultImports”: true
},
“exclude”: [“node_modules”]
}

需要重新打开编辑器,方可生效。

你可能感兴趣的:(vue.js)