mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-11-13 00:12:09 +08:00
* fix: Tabbar icon line-height * [new feature] progress add showPivot prop * [new feature] TabItem support vue-router * [new feature] update document header style * [Doc] add toast english ducoment * [new feature] add i18n support * feat: Extract demos from markdown * feat: Base components demos * [new feature] complete demo extract & translate * [fix] text cases * fix: add deepAssign test cases * fix: changelog detail * [new feature] AddressEdit support i18n
1.7 KiB
1.7 KiB
Lazyload 图片懒加载
使用指南
Lazyload是Vue指令,所以需要使用它必须将它注册到Vue的指令中。
import Vue from 'vue';
import { Lazyload } from 'vant';
Vue.use(Lazyload, options);
代码演示
基础用法
将v-lazy指令的值设置为你需要懒加载的图片
<img v-for="img in imageList" v-lazy="img">
export default {
data() {
return {
imageList: [
'https://img.yzcdn.cn/1.jpg',
'https://img.yzcdn.cn/2.jpg'
]
};
}
}
背景图懒加载
和图片懒加载不同,背景图懒加载需要使用v-lazy:background-image,值设置为背景图片的地址,需要注意的是必须声明容器高度。
<div v-for="img in imageList" v-lazy:background-image="img" />
懒加载模块
懒加载模块需要使用到lazy-component,将需要懒加载的内容放在lazy-component中即可。
<lazy-component>
<img v-for="img in imageList" v-lazy="img">
</lazy-component>
Options
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|---|---|---|---|---|
| loading | 加载时的图片 | String |
- | - |
| error | 错误时的图片 | String |
- | - |
| preload | 预加载高度的比例 | String |
- | - |
| attempt | 尝试次数 | Number |
3 |
- |
| listenEvents | 监听的事件 | Array |
scroll等 |
- |
| adapter | 适配器 | Object |
- | - |
| filter | 图片url过滤 | Object |
- | - |
| lazyComponent | 是否能懒加载模块 | Boolean |
false |
- |
更多内容请参照: vue-lazyload 官方文档