来源:未知 时间:2021-12-21 13:38 作者:小飞侠 阅读:次
[导读] Vue-Lazyload Vue module for lazyloading images in your applications. Some of goals of this project worth noting include: Be lightweight, powerful and easy to use Work on any image type Add loading class while image is loading Supports both...
Vue-LazyloadVue module for lazyloading images in your applications. Some of goals of this project worth noting include:
Table of ContentsDemoRequirements
Installationnpm$ npm i vue-lazyload -S CDNCDN: https://unpkg.com/vue-lazyload/vue-lazyload.js <script src="https://unpkg.com/vue-lazyload/vue-lazyload.js"></script><script> Vue.use(VueLazyload) ...</script> Usagemain.js: import Vue from 'vue'import App from './App.vue'import VueLazyload from 'vue-lazyload'Vue.use(VueLazyload)// or with optionsVue.use(VueLazyload, { preLoad: 1.3, error: 'dist/error.png', loading: 'dist/loading.gif', attempt: 1})new Vue({ el: 'body', components: { App }}) template: <ul> <li v-for="img in list"> <img v-lazy="img.src" > </li></ul> use
下一篇:vue监听路由变化针对浏览器后退业务处理 最新评论添加评论更多文章推荐
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习 京ICP备14009008号-1@版权所有www.zixuephp.com 网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com
添加评论 |