Categories: Vant 教程

Vant Lazyload 图片懒加载

引入

Lazyload​ 是 Vue 指令,使用前需要对指令进行注册

import Vue from vue;
import { Lazyload } from vant;

Vue.use(Lazyload);

// 注册时可以配置额外的选项
Vue.use(Lazyload, {
  lazyComponent: true
});

代码演示

基础用法

将​v-lazy​指令的值设置为你需要懒加载的图片

<img v-for = "img in imageList" v-lazy = "img" >
export default {
  data() {
    return {
      imageList: [
        https://img.yzcdn.cn/vant/apple-1.jpg,
        https://img.yzcdn.cn/vant/apple-2.jpg
      ]
    };
  }
}

背景图懒加载

和图片懒加载不同,背景图懒加载需要使用 ​v-lazy: background-image​,值设置为背景图片的地址,需要注意的是必须声明容器高度。

<div v-for = "img in imageList" v-lazy:background-image = "img" />

组件懒加载

将需要懒加载的组件放在 ​lazy-component ​标签中,即可实现组件懒加载。

// 注册时设置`lazyComponent`选项
Vue.use(Lazyload, {
  lazyComponent: true
});
<lazy-component>
  <img v-for = "img in imageList" v-lazy = "img" >
</lazy-component>

API

Options

参数 说明 类型 默认值
loading 加载时的图片 string
error 错误时的图片 string
preload 预加载高度的比例 string
attempt 尝试次数 number 3
listenEvents 监听的事件 string[] scroll
adapter 适配器 object
filter 图片 URL 过滤 object
lazyComponent 是否能懒加载模块 boolean false

更多内容请参照:vue-lazyload 官方文档

实例演示

唐伯虎点蚊香

前端小白,想各位学习!

Share
Published by
唐伯虎点蚊香

Recent Posts

在 Chrome 中删除、允许和管理 Cookie

您可以选择删除现有 Cooki…

22 小时 ago

自定义指令:聊聊vue中的自定义指令应用法则

今天我们来聊聊vue中的自定义…

1 周 ago

聊聊Vue中@click.stop和@click.prevent

一起来学下聊聊Vue中@cli…

2 周 ago

Nginx 基本操作:启动、停止、重启命令。

我们来学习Nginx基础操作:…

3 周 ago

Vue3:手动清理keep-alive组件缓存的方法

Vue3中手动清理keep-a…

3 周 ago

聊聊React和Vue组件更新的实现及区别

React 和 Vue 都是当…

4 周 ago