Type Alias: WatchCallback<V, OV>
WatchCallback<
V,OV> =VueWatchCallback<V,OV>
Defined in: src/types/index.ts:894
Watch callback taken from the native Vue watch. Any internal function
is accepted: sync or async, with (newValue, oldValue) args or with no
args at all (e.g. () => checkValidations()).
Type Parameters
V
V = unknown
OV
OV = unknown