Coffcer / vue-lazy-component

Vue directive for lazy load components or elements

Home Page:https://coffcer.github.io/vue-lazy-component/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

https://coffcer.github.io/vue-lazy-component/


Languages

Language:JavaScript 66.2%Language:CSS 17.5%Language:Vue 8.5%Language:HTML 7.8%