diff --git a/README.md b/README.md index 30035a6..5d7b5ec 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@

## Intro -An infinite scroll plugin for Vue.js, it can help you impletement infinite scroll list more easily. +An infinite scroll plugin for Vue.js, it can help you implement infinite scroll list more easily. ### Features - Mobile friendly diff --git a/docs/guide/configure-load-msg.md b/docs/guide/configure-load-msg.md index f46c7b4..927c18d 100644 --- a/docs/guide/configure-load-msg.md +++ b/docs/guide/configure-load-msg.md @@ -28,7 +28,7 @@ We can use the [`slot` special attribute](https://vuejs.org/v2/api/index.html#sl ``` -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: +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: ``` html @@ -42,7 +42,7 @@ Unlike other slots, the default value for the `error` slot will provide a retry 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. -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: +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: ``` html diff --git a/docs/guide/use-with-el-table.md b/docs/guide/use-with-el-table.md index 952ef81..703d488 100644 --- a/docs/guide/use-with-el-table.md +++ b/docs/guide/use-with-el-table.md @@ -12,7 +12,7 @@ It is easy to use this plugin with the standard table component, just place the 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. ::: warning -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 +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 ::: The final template should be similar to: