vue-ts-debounce
v0.1.2
Published
Vue.js decorator for debouncing
Downloads
465
Maintainers
Readme
vue-ts-debounce
Debounce decorator for Vue.js 2 using vue-class-component
. Based
on ts-debounce
.
Install
yarn add vue-ts-debounce
Usage
In the example below, increment
is called at most every 500ms.
<template>
<span>{{ value }}</span>
</template>
<script lang="ts">
import Vue from "vue"
import Component from "vue-class-component"
import { Debounce } from "vue-ts-debounce"
@Component
export default class MyComponent extends Vue {
value = 0
@Debounce(500)
increment() {
this.value += 1
}
}
</script>
Options
The @Debounce
decorator either accepts a number or an object. The number represents the wait time in ms between each
call. The following options are available in the object:
| Name | Description |
|---------------|---------------------------------------------------------------------------------------------------|
| wait
| The wait time in ms. |
| isImmediate
| If the first call should be immediate instead of waiting for the given duration. |
| maxWait
| Call debounced function after this duration in ms, even if another call is currently in progress. |
Thanks
Inspired by vue-debounce-decorator. The difference to that library is
the usage of ts-debounce
and the ability to use the decorator across
multiple instances of the same component.