天天看點

IDEA下 vue程式無法識别 ’@/‘

IDEA下 vue程式無法識别 ’@/‘

在項目的根目錄下建立jsconfig.json 并添加以下内容:

{ 
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
        "@/*": ["src/*"]
    }
  },
  "exclude": ["node_modules", "dist"]
}