You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-9Lines changed: 25 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# vue-lazy-loading
2
2
3
-
> *alpha*a vue plugin to better supporting lazy loading for image and iframe
3
+
> a vue plugin to better supporting lazy loading for image and iframe
4
4
5
5
**The plugin will preferentially use native image and iframe [lazy-loading](https://caniuse.com/#feat=loading-lazy-attr), if the browser does not support it, it will be implemented through [IntersectionObserver](https://caniuse.com/#feat=intersectionobserver)**
6
6
@@ -30,21 +30,26 @@ import LazyLoading from 'vue-lazy-loading'
30
30
Vue.use(LazyLoading)
31
31
```
32
32
33
-
-**Setting a fixed size is better for browser loading**
34
-
35
33
```vue
36
34
<template>
35
+
<!-- Setting a fixed size is better for browser loading -->
Available in [latest browsers](http://caniuse.com/#feat=intersectionobserver). If browser support is not available, then make use of this [polyfill](https://www.npmjs.com/package/intersection-observer).
96
+
Available in [latest browsers](http://caniuse.com/#feat=intersectionobserver). If browser support is not available (eg IE), then make use of this [polyfill](https://www.npmjs.com/package/intersection-observer).
0 commit comments