Skip to content

Coffcer/vue-lazy-component

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-lazy-component

Vue directive for lazy load components or elements, lazy load some components which not in the first screen can improve vue initialization performance.

Live demo

Usage

import Vue from 'vue';
import lazy from 'vue-lazy-component';

Vue.use(lazy);
<!--Lazy load the element, 3s-->
<div v-lazy="3000">
    <p>Chlid</p>
    <component></component>
</div>
<!--Lazy load the component-->
<component v-lazy="3000"></component>

<!--Lazy load 0s, the effect is like setTimeout(fn, 0) -->
<component v-lazy></component>

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build the component to UMD js
npm run build

# build the dev page
npm run build:demo

About

Vue directive for lazy load components or elements

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published