vue获取验证码倒计时,自定义组件点击事件不生效的问题

Posted Vicky-Rong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue获取验证码倒计时,自定义组件点击事件不生效的问题相关的知识,希望对你有一定的参考价值。

说明:部分组件使用的是element-ui

子组件

<template>
  <div class="count-down">
    <el-button type="primary" size="small" style="width:80px;" :disabled="disabled || time > 0">
      {{ text }}
    </el-button>
  </div>
</template>

<script type="text/javascript">
export default {
  data() {
    return {
      time: 0
    };
  },
  props: {
    second: {
      type: Number,
      default: 5
    },
    disabled: {
      type: Boolean,
      default: false
    }
  },
  methods: {
    run: function() {
      this.time = this.second;
      this.timer();
    },
    timer: function() {
      if (this.time > 0) {
        this.time--;
        setTimeout(this.timer, 1000);
      }
    }
  },
  computed: {
    text: function() {
      return this.time > 0 ? this.time + "s" : "获取验证码";
    }
  }
};
</script>

父组件

<template>
    <div>
        <count-down :disabled="disabled" @click="send" ref="btn"></count-down>
    </div>
</template>    

export default {
        data () {
                return {
                    disabled: false
                }
        },
        methods: {
                send: function () {
                    this.disabled = true;
                    setTimeout(this.sended, 1000);
                },
                 sended() {
                    this.$refs.btn.run();
                    this.disabled = false;
                }
        }
}
               

这样写的时候,父组件的click事件是不生效的,在给某个组件监听一个原生事件的时候可以使用v-on的修饰符.native

<count-down :disabled="disabled" @click.native="GetVerifyCode" ref="countDownBtn"></count-down>

这样点击事件就生效了

 

以上是关于vue获取验证码倒计时,自定义组件点击事件不生效的问题的主要内容,如果未能解决你的问题,请参考以下文章

button获取验证码 点击倒计时

MAC AxureRP9登录获取验证码倒计时

vue实现获取验证码

Vue实战项目之获取手机短信验证码

使用Jquery实现获取短信验证码60秒倒计时

C#实现发送验证码倒计时60秒