mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Notify): Type 'Timeout' is not assignable to type 'number' (#8477)
Co-authored-by: yangwk <paul>
This commit is contained in:
parent
6c1b7e542f
commit
9849c76f72
@ -59,7 +59,7 @@ function Notify(options: NotifyMessage | NotifyOptions) {
|
||||
clearTimeout(timer);
|
||||
|
||||
if (options.duration! > 0) {
|
||||
timer = setTimeout(Notify.clear, options.duration);
|
||||
timer = window.setTimeout(Notify.clear, options.duration);
|
||||
}
|
||||
|
||||
return instance;
|
||||
|
Loading…
x
Reference in New Issue
Block a user