idea中多vue项目自动提示配置

在子项目目录下添加jsconfig.json,代码:

{
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "@/*": ["src/*"]
    }
  },
  "exclude": [
    "node_modules",
    "dist"
  ]
}
posted @ 2024-10-17 11:29  newbigapple  阅读(31)  评论(0)    收藏  举报