diff --git a/docs/en-US/component/scrollbar.md b/docs/en-US/component/scrollbar.md
index 1e6e0ed57a..ef93c30840 100644
--- a/docs/en-US/component/scrollbar.md
+++ b/docs/en-US/component/scrollbar.md
@@ -47,6 +47,20 @@ scrollbar/infinite-scroll
:::
+## Direction ^(2.9.12)
+
+:::demo You can choose in which direction to use infinite scroll.
+
+scrollbar/direction
+
+:::
+
+:::warning
+
+The direction property is an option from [vueuse](https://vueuse.org/core/useInfiniteScroll/#direction) and it apply the required css.
+
+:::
+
## API
### Attributes
diff --git a/docs/examples/scrollbar/direction.vue b/docs/examples/scrollbar/direction.vue
new file mode 100644
index 0000000000..d202829f5c
--- /dev/null
+++ b/docs/examples/scrollbar/direction.vue
@@ -0,0 +1,58 @@
+
+
+
+ {{ item }}
+
+
+
+
+
+
+
diff --git a/packages/components/scrollbar/src/scrollbar.ts b/packages/components/scrollbar/src/scrollbar.ts
index 1ec6f29d1b..8d72f66399 100644
--- a/packages/components/scrollbar/src/scrollbar.ts
+++ b/packages/components/scrollbar/src/scrollbar.ts
@@ -106,6 +106,7 @@ export const scrollbarProps = buildProps({
},
/**
* @description direction to use the infinite scroll
+ * @link https://vueuse.org/core/useInfiniteScroll/#direction
*/
direction: {
type: String,