Skip to content

Commit fe45820

Browse files
committed
feat!: requires Vue 3.5
1 parent 070fc8c commit fe45820

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ Refer to [functions list](https://vueuse.org/functions) or [documentations](http
5858

5959
## 📦 Install
6060

61-
> From v12.0, VueUse no longer supports Vue 2. Please use v11.x for Vue 2 support.
61+
> From v14.0, VueUse requires Vue v3.5+
6262
> From v13.0, VueUse requires Vue v3.3+
63+
> From v12.0, VueUse no longer supports Vue 2. Please use v11.x for Vue 2 support.
6364
6465
```bash
6566
npm i @vueuse/core

packages/shared/computedEager/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ alias: eagerComputed
88
Eager computed without lazy evaluation.
99

1010
::: tip
11-
Note💡: If you are using Vue 3.4+, you can use `computed` right away. In Vue 3.4+, if the computed new value does not change, `computed`, `effect`, `watch`, `watchEffect`, `render` dependencies will not be triggered.
11+
Note💡: If you are using Vue 3.4+, you can use `computed` right away, you no longer need this function.
12+
In Vue 3.4+, if the computed new value does not change, `computed`, `effect`, `watch`, `watchEffect`, `render` dependencies will not be triggered.
1213
See: https://github.com/vuejs/core/pull/5912
1314
:::
1415

packages/shared/watchPausable/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pausable watch
99

1010
::: tip
1111

12-
[Pausable Watcher](https://vuejs.org/api/reactivity-core.html#watch) has been added to Vue [since 3.5](https://github.com/vuejs/core/pull/9651), use `const { stop, pause, resume } = watch(watchSource, callback)` instead on supported versions.
12+
[Pausable Watcher](https://vuejs.org/api/reactivity-core.html#watch) has been added to Vue [since 3.5](https://github.com/vuejs/core/pull/9651), use `const { stop, pause, resume } = watch(watchSource, callback)` instead.
1313

1414
:::
1515

0 commit comments

Comments
 (0)