Cannot find module ‘@/api/note‘ or its corresponding type declarations.Vetur

Cannot find module ‘@/api/note‘ or its corresponding type declarations.Vetur_第1张图片

tsconfig.json

{
  "compilerOptions": {
    // ...
    "baseUrl": "./", // 这里需要配置
    "paths": {
      "@/*": ["./src/*"] // 这里需要配置
    }
  },
  // include也需要配置以下:
  "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
  "exclude": ["node_modules"]
}

你可能感兴趣的:(vue)