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
/>
