1.0.1 • Published 6 years ago

tiny-vue-img-lazyload v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Tiny Vue Image Lazyload

Install

yarn add tiny-vue-img-lazyload

Usage

import Vue from 'vue'
import TinyVueImgLazyload from 'tiny-vue-img-lazyload'

Vue.use(TinyVueImgLazyload, {
  onLoadClassName: 'loaded' // when image loaded, the className will be attach to the dom
})

then in your vue component

<img v-lazy-load:src="your-img-link" />

Example

clone this repo and

yarn install
yarn run dev