Skip to content

watchDeep

Category
Export Size
113 B
Last Changed
4 days ago

Shorthand for watching value with {deep: true}

Usage

Similar to watch, but with { deep: true }

ts
import { 
watchDeep
} from '@vueuse/core'
const
nestedObject
=
ref
({
foo
: {
bar
: {
deep
: 5 } } })
watchDeep
(
nestedObject
, (
updated
) => {
console
.
log
(
updated
)
})
onMounted
(() => {
nestedObject
.
value
.
foo
.
bar
.
deep
= 10
})

Type Declarations

ts
export declare function 
watchDeep
<
T
extends
Readonly
<
WatchSource
<unknown>[]>,
Immediate
extends
Readonly
<boolean> = false,
>(
source
: [...
T
],
cb
:
WatchCallback
<
MapSources
<
T
>,
MapOldSources
<
T
,
Immediate
>>,
options
?:
Omit
<
WatchOptions
<
Immediate
>, "deep">,
):
WatchStopHandle
export declare function
watchDeep
<
T
,
Immediate
extends
Readonly
<boolean> = false,
>(
source
:
WatchSource
<
T
>,
cb
:
WatchCallback
<
T
,
Immediate
extends true ?
T
| undefined :
T
>,
options
?:
Omit
<
WatchOptions
<
Immediate
>, "deep">,
):
WatchStopHandle
export declare function
watchDeep
<
T
extends object,
Immediate
extends
Readonly
<boolean> = false,
>(
source
:
T
,
cb
:
WatchCallback
<
T
,
Immediate
extends true ?
T
| undefined :
T
>,
options
?:
Omit
<
WatchOptions
<
Immediate
>, "deep">,
):
WatchStopHandle

Source

SourceDocs

Contributors

NoiseFan

Changelog

No recent changes

Released under the MIT License.