# Lazyload
### Intro
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.
### Install
Register component globally via `app.use`, refer to [Component Registration](#/en-US/advanced-usage#zu-jian-zhu-ce) for more registration ways。
```js
import { createApp } from 'vue';
import { Lazyload } from 'vant';
const app = createApp();
app.use(Lazyload);
// with options
app.use(Lazyload, {
lazyComponent: true,
});
```
## Usage
### Basic Usage
```html
```
```js
export default {
setup() {
return {
imageList: [
'https://img.yzcdn.cn/vant/apple-1.jpg',
'https://img.yzcdn.cn/vant/apple-2.jpg',
],
};
},
};
```
### Lazyload Background Image
Use `v-lazy:background-image` to set background url, and declare the height of the container.
```html