mirror of
https://github.com/vuejs/vue.git
synced 2024-11-21 20:28:54 +00:00
chore(types): remove unnecessary type assertion (#12563)
This commit is contained in:
parent
86fb6bd151
commit
ff2d52f7ac
@ -221,7 +221,7 @@ function doWatch(
|
||||
} else if (isFunction(source)) {
|
||||
if (cb) {
|
||||
// getter with cb
|
||||
getter = () => call(source as Function, WATCHER_GETTER)
|
||||
getter = () => call(source, WATCHER_GETTER)
|
||||
} else {
|
||||
// no cb -> simple effect
|
||||
getter = () => {
|
||||
@ -231,7 +231,7 @@ function doWatch(
|
||||
if (cleanup) {
|
||||
cleanup()
|
||||
}
|
||||
return call(source as Function, WATCHER, [onCleanup])
|
||||
return call(source, WATCHER, [onCleanup])
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user