Files
vue-ts-example/src/components/send-sms.vue
严浩 6007f6d9bc
All checks were successful
CI / cache-and-install (push) Successful in 1m38s
chro: Utils4uAutoImports
2024-09-13 12:05:51 +08:00

11 lines
301 B
Vue

<template>
<van-button type="primary" @click="triggerCountdown" :disabled="isCounting">
发送验证码
{{ !isCounting ? '' : `(${countdownTime}s)` }}
</van-button>
</template>
<script setup lang="ts">
const { countdownTime, triggerCountdown, isCounting } = useVueCountdown(3);
</script>