Skip to content

Commit 79109fc

Browse files
committed
docs: fix typos
1 parent f593672 commit 79109fc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<p align="center"><img src="http://www.peachis.me/assets/vue-infinite-loading/demo.gif"></p>
1010

1111
## Intro
12-
An infinite scroll plugin for Vue.js, it can help you impletement infinite scroll list more easily.
12+
An infinite scroll plugin for Vue.js, it can help you implement infinite scroll list more easily.
1313

1414
### Features
1515
- Mobile friendly

docs/guide/configure-load-msg.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ We can use the [`slot` special attribute](https://vuejs.org/v2/api/index.html#sl
2828
</infinite-loading>
2929
```
3030

31-
Unlike other slots, the default value for the `error` slot will provide a retry button for users to load data again. If you want to impletement a retry button for users when you customize the `error` slot, you can use the [`slot-scope`](https://vuejs.org/v2/api/index.html#slot-scope) feature, like this:
31+
Unlike other slots, the default value for the `error` slot will provide a retry button for users to load data again. If you want to implement a retry button for users when you customize the `error` slot, you can use the [`slot-scope`](https://vuejs.org/v2/api/index.html#slot-scope) feature, like this:
3232

3333
``` html
3434
<infinite-loading>
@@ -42,7 +42,7 @@ Unlike other slots, the default value for the `error` slot will provide a retry
4242

4343
In order to maintain consistent behavior for all load message when we building large application, this plugin support configure all slot using the plugin API, we just need to pass a string or Vue component for it, click [here](./configure-plugin-opts.md#slots) to read more about it.
4444

45-
The `error` slot is still the special one in this way, same as the `slot` special attribute way, if you want to impletement a retry button for users in your own error component, you can use the [`vm.$attrs`](https://cn.vuejs.org/v2/api/#vm-attrs) property, like this:
45+
The `error` slot is still the special one in this way, same as the `slot` special attribute way, if you want to implement a retry button for users in your own error component, you can use the [`vm.$attrs`](https://cn.vuejs.org/v2/api/#vm-attrs) property, like this:
4646

4747
``` html
4848
<!-- your own error component -->

docs/guide/use-with-el-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It is easy to use this plugin with the standard table component, just place the
1212
2. Set the `forceUseInfiniteWrapper` property to the CSS selector of the real scroll container, because the scroll bar of Element UI table component was enable dynamically according to content height, this plugin cannot find the correct scroll container automatically.
1313

1414
::: warning
15-
If there has multiple Element UI table components in a same page, we need a more detailed CSS selector instead of the `.el-table__body-wrapper`, if not, this plugin may find a error table component as the scroll container
15+
If there has multiple Element UI table components in a same page, we need a more detailed CSS selector instead of the `.el-table__body-wrapper`, if not, this plugin may find an error table component as the scroll container
1616
:::
1717

1818
The final template should be similar to:

0 commit comments

Comments
 (0)