How to use the Vue-based lazy loading plug-in vue-view-lazy

php中世界最好的语言
Release: 2018-05-28 14:24:10
Original
1882 people have browsed it

This time I will show you how to use the Vue-based delayed loading plug-in vue-view-lazy, and what are theprecautions for using the Vue-based delayed loading plug-in vue-view-lazy. Here is the actual combat Let’s take a look at the case.

Purpose:Load pictures or other resources after entering thevisible area

Install and use

  1. Directly download vue-view-lazy.min.js in the dist directory and use

  2. Use npm to install

Use directly

Copy after login
npm:

$ npm install --save-dev vue-view-lazy
Copy after login

Introduce vue-view-lazy

.main file

import vView from 'vue-view-lazy' Vue.use(vView,{ error:'../../static/images/loading.png', loading:'../../static/images/loading.gif', });
Copy after login

Lazy loading of images

.vue file

  
Copy after login

Lazy loading of data

.vue file

  
Copy after login
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to use swiper in vue

##How to encapsulate Angular network requests

The above is the detailed content of How to use the Vue-based lazy loading plug-in vue-view-lazy. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!