You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{ title: ".debounce-<tick|frame|idle|n>", text: "Defer callback by ms, next tick/animation frame, or until idle. Defaults to 250ms.", example: `<input :oninput.debounce-200="update(event)" />` },
141
-
{ title: ".throttle-<tick|frame|n>", text: "Limit callback rate to interval in ms, tick or animation framerate. By default 250ms.", example: `<div :text.throttle-100="text.length">...</div>` },
140
+
{ title: ".debounce-<ms>", text: "Defer callback by ms. Defaults to 250ms.", example: `<input :oninput.debounce-200="update(event)" />` },
141
+
{ title: ".throttle-<ms>", text: "Limit callback rate to interval in ms. By default 250ms.", example: `<div :text.throttle-100="text.length">...</div>` },
142
+
{ title: ".tick", text: "Defer callback to next microtask.", example: `<div :class.tick="{ active }">...</div>` },
0 commit comments