前端按钮倒计时

mac2024-03-28  35

好长时间没有写博客了,今天看着一个小功能就动手玩了一下,直接上代码。

<template> <div> searchContainer <mt-button :type="type" size="small" :disabled='flag' @click="test" style="width:80px;">{{value}}</mt-button> </div> </template> <script> export default { data() { return { value:"点击", timer:'', type:'primary', flag:false } }, methods: { test(){ let time = 5; if(this.timer!=''){ clearInterval(this.timer) } this.flag = true this.timer = setInterval(()=>{ this.value = time; time--; this.callback(time) },1000) }, callback(time){ if(time==-1){ clearInterval(this.timer) this.flag = false this.value = "点击" } } }, } </script> <style> </style>
最新回复(0)