Skip to content

Commit f9129d5

Browse files
committed
Fix typos in README [ci skip]
1 parent a4669b2 commit f9129d5

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

README.md

+3-8
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
## Introduction
1818

19-
The [IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) is an amazing API which allows you to observe one or more HTMLElement for when it has enterede or left the viewport.
19+
The [IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) is an amazing API which allows you to observe one or more HTMLElement for when it has entered or left the viewport.
2020

2121
This API has many use cases like, infinite-scroll, lazy-loading or animations when an element enters the viewport.
2222

@@ -49,7 +49,7 @@ This means that it's basically a "decorator". A component which does not output
4949

5050
```html
5151
<template>
52-
<intersect @intersected="msg = 'Intersected!'">
52+
<intersect @enter="msg = 'Intersected'" @leave="msg = 'Not intersected'">
5353
<div>{{ msg }}</div>
5454
</intersect>
5555
</template>
@@ -61,12 +61,7 @@ This means that it's basically a "decorator". A component which does not output
6161
components: { Intersect },
6262
data () {
6363
return {
64-
msg: 'Not intersected.'
65-
}
66-
},
67-
methods: {
68-
onIntersected () {
69-
alert('Element has intersected.')
64+
msg: 'I will change'
7065
}
7166
}
7267
}

0 commit comments

Comments
 (0)