File tree Expand file tree Collapse file tree
apps/docs/src/pages/composables/system Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -85,6 +85,9 @@ flowchart TD
8585| ` isIntersecting ` | <AppSuccessIcon /> | ShallowRef, readonly |
8686| ` isPaused ` | <AppSuccessIcon /> | ShallowRef, readonly |
8787| ` target ` | <AppSuccessIcon /> | Accepts MaybeRef, watched for changes |
88+ | ` pause() ` | — | Temporarily stop observing without disconnecting |
89+ | ` resume() ` | — | Resume after ` pause() ` |
90+ | ` stop() ` | — | Disconnect the observer permanently |
8891
8992### useElementIntersection
9093
Original file line number Diff line number Diff line change @@ -92,6 +92,9 @@ flowchart TD
9292| ` isActive ` | <AppSuccessIcon /> | Computed from observer ref |
9393| ` isPaused ` | <AppSuccessIcon /> | ShallowRef, readonly |
9494| ` target ` | <AppSuccessIcon /> | Accepts MaybeRef, watched for changes |
95+ | ` pause() ` | — | Temporarily stop observing without disconnecting |
96+ | ` resume() ` | — | Resume after ` pause() ` |
97+ | ` stop() ` | — | Disconnect the observer permanently |
9598
9699## Examples
97100
Original file line number Diff line number Diff line change @@ -80,6 +80,9 @@ flowchart TD
8080| ` isActive ` | <AppSuccessIcon /> | Computed from observer ref |
8181| ` isPaused ` | <AppSuccessIcon /> | ShallowRef, readonly |
8282| ` target ` | <AppSuccessIcon /> | Accepts MaybeRef, watched for changes |
83+ | ` pause() ` | — | Temporarily stop observing without disconnecting |
84+ | ` resume() ` | — | Resume after ` pause() ` |
85+ | ` stop() ` | — | Disconnect the observer permanently |
8386
8487### useElementSize
8588
You can’t perform that action at this time.
0 commit comments