使用了這兩個(gè)插件lazy-load-imgvue-lazy-load-img當(dāng)有新數(shù)據(jù)替換掉原有的goodsList后,懶加載的圖片不變,不知道怎么處理<div v-for="item in goodsList"> <vue-lazy-load-img mode="diy" :time="50" :complete="true" :position="{ top: 0, right: 0, bottom: 0, left: 0 }" :diy="{ backgroundSize: 'cover', backgroundRepeat: 'no-repeat', backgroundPosition: 'center center' }" @before="before" @success="success" @error="error"> <img :src="'../image/load-img.png'" :data-src="item.thumb_img"> </vue-lazy-load-img></div> <script src="../script/lazy-load-img.js"></script><script src="../script/vue-lazy-load-img.js"></script>data: { goodsList: []}
vue 懶加載插件 圖片不更新
ibeautiful
2018-11-13 17:30:42