UNPKG

vue-lazyload-imgs

Version:

This Vue component vue-lazyload-imgs is used to implement lazy loading of images in Vue2 (Vue>=2.6.0) and Vue3 framework environments. The difference from some lazy loading image instructions is that this component can lazily load any number of images at

7 lines (6 loc) 284 B
import { App } from 'vue-demi'; import { default as LazyLoadImgs } from './src/components/lazy-load-imgs.vue'; import { ILazyOptions } from './src/scripts/types'; declare const install: (app: App, options?: ILazyOptions) => any; export default install; export { LazyLoadImgs };