其他分享
首页 > 其他分享> > 配置Vue中@符,出现路径提示

配置Vue中@符,出现路径提示

作者:互联网

1.Vs code商店搜索 Path Intellisense 插件安装

2. 打开设置 - 首选项 - 搜索 Path Intellisense - 打开 settings.json ,添加:

 "path-intellisense.mappings": {
     "@": "${workspaceRoot}/src"
 }

3.项目根目录创建  jsconfig.json 文件,添加如下代码:

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

4.重启项目即可

标签:src,Vue,提示,路径,json,添加,搜索,Path,Intellisense
来源: https://www.cnblogs.com/CGWTQ/p/15618596.html