如果倒计时达到 0,则触发一个函数 - VueJS

Trigger a function if countdown reaches 0 - VueJS

我已经创建了一个倒计时计时器,它可以完美地减少模板中的数字,但现在我需要它在它达到 0 后启动在方法中声明的函数。我尝试检查方法中是否满足条件但是当达到 0 时它不会启动任何东西。

这是我的index.vue

<template>
  <div>
    {{ timerCount }}
  </div>
</template>

<script>
export default {
  data(){
     return{
        timerCount: 60
     }
   },

  watch: {
    timerEnabled(value) {
      if (value) {
        setTimeout(() => {
         this.timerCount = this.timerCount - 1;
        }, 1000);
      }
    },
    timerCount: {
      handler(value) {
        if (value > 0 && this.timerEnabled) {
          setTimeout(() => {
            this.timerCount = this.timerCount - 1;
          }, 1000);
        }
      },
      immediate: true
    },
  },

  methods:{
    launchThis() {
       // I need this function to be launched if timerCount reaches 0
     }
  }
}
</script>

任何让它发挥作用的指导都将不胜感激。

你可以使用这样的东西

<script>
export default {
  watch: {
    timerCount: {
      handler(value) {
        if (value > 0 && this.timerEnabled) {
          setTimeout(() => {
            this.timerCount = this.timerCount - 1;
          }, 1000);
        } else {
          this.launchThis() // run your function here
        }
      },
      immediate: true
    },
  },
}
</script>