【发布时间】:2021-03-03 17:11:55
【问题描述】:
Property 'loading' does not exist on type 'ElementAttrs<ImgHTMLAttributes>'
- vue: ^3.0.0
- @vue/babel-plugin-jsx: ^1.0.3
- 打字稿:^3.9.9
【问题讨论】:
标签: typescript vue.js vuejs3
Property 'loading' does not exist on type 'ElementAttrs<ImgHTMLAttributes>'
【问题讨论】:
标签: typescript vue.js vuejs3
导入此代码后添加到您的main.ts:
// Fix: Property 'loading' does not exist on type 'ElementAttrs<ImgHTMLAttributes>'
declare module "@vue/runtime-dom" {
interface ImgHTMLAttributes extends HTMLAttributes {
loading?: "lazy" | "eager" | "auto";
}
}
【讨论】: