ElementUI的 图片image 使用懒加载报[Vue warn]: Invalid prop: type check failed for prop "lazy". Expected Boolean, got String with value "true".

ElementUI使用图片标签 el-image 的懒加载报错 [Vue warn]: Invalid prop: type check failed for prop "lazy". Expected Boolean, got String with value "true".

无效的属性:属性“lazy”的类型检查失败。应为布尔值,得到值为“true”的字符串。

 

 

报错代码:

            <el-image
              style="width: 100px; height: auto;"
              :src="scope.row.url"
              :preview-src-list="scope.row.urlList" 
				lazy="true"
            />

 

修改代码:

            <el-image
              style="width: 100px; height: auto;"
              :src="scope.row.url"
              :preview-src-list="scope.row.urlList"
              lazy
            />

 

posted @ 2022-04-01 17:11  编程民工  阅读(981)  评论(1编辑  收藏  举报