From af3e87785760477aff294c4dd9230dec91bfa2af Mon Sep 17 00:00:00 2001 From: Joe Zimmerman Date: Fri, 22 Apr 2022 00:10:05 -0500 Subject: [PATCH] chore: update demo (#1515) --- packages/shared/watchThrottled/demo.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shared/watchThrottled/demo.vue b/packages/shared/watchThrottled/demo.vue index dbaa876d050..8f6686a4fa5 100644 --- a/packages/shared/watchThrottled/demo.vue +++ b/packages/shared/watchThrottled/demo.vue @@ -7,7 +7,7 @@ const updated = ref(0) watchThrottled(input, () => { updated.value += 1 -}, { throttle: 500 }) +}, { throttle: 1000 })