0👍
✅
Add to your main.ts
after imports this code:
// Fix: Property 'loading' does not exist on type 'ElementAttrs<ImgHTMLAttributes>'
declare module "@vue/runtime-dom" {
interface ImgHTMLAttributes extends HTMLAttributes {
loading?: "lazy" | "eager" | "auto";
}
}
Source:stackexchange.com