79354450

Date: 2025-01-14 09:07:46
Score: 2
Natty:
Report link

As already mentioned, you need to configure tsconfig.json. I would add that the include field should contain auto-imports.d.ts and the exclude field should not contain this file:

{
  //...
  "include": [
    // ...
    "auto-imports.d.ts",
  ],
  "exclude": [
    "node_modules" 
    // auto-imports.d.ts should not be inside exclude field
  ]
  //...
}

Read more about the Auto-Import in Vue: https://medium.com/@alekswebnet/auto-import-in-vue-quick-setup-guide-3004d97e749a

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: alekswebnet