/*! For license information please see 8409.c156202a.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["8409"],{70561:function(s,a,n){"use strict";n.r(a);var t=n("80681");let e=["innerHTML"];a.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Lazyload

\n

Intro

\n

When the page needs to load a large amount of content, delay loading the content outside the visible area of the page to make the page load smoother.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Lazyload } from 'vant';\n\nconst app = createApp();\napp.use(Lazyload);\n\n// with options\napp.use(Lazyload, {\n  lazyComponent: true,\n});\n
\n

Usage

\n

Basic Usage

\n
<img v-for="img in imageList" v-lazy="img" />\n
\n
export default {\n  setup() {\n    return {\n      imageList: [\n        'https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',\n        'https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',\n      ],\n    };\n  },\n};\n
\n

Lazyload Background Image

\n

Use v-lazy:background-image to set background url, and declare the height of the container.

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

Lazyload Component

\n
// set `lazyComponent` option\napp.use(Lazyload, {\n  lazyComponent: true,\n});\n
\n
<lazy-component>\n  <img v-for="img in imageList" v-lazy="img" />\n</lazy-component>\n
\n

API

\n

Options

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
loadingSrc of the image while loadingstring-
errorSrc of the image upon load failstring-
preLoadProportion of pre-loading heightnumber-
attemptAttempts countnumber3
listenEventsEvents that you want vue listen forstring[]scroll...
adapterDynamically modify the attribute of elementobject-
filterThe image\'s listener filterobject-
lazyComponentLazyload componentbooleanfalse
\n
\n

See more: vue-lazyload

\n
\n
'},null,8,e))}}}]);