您当前的位置: 首页 > 

vue3 倒计时3秒后返回首页

梁云亮 发布时间:2021-05-16 19:55:31 ,浏览量:3

效果在这里插入图片描述 代码实现

{{ count }}秒后返回网站首页 



import router from "/@/router";
import {onMounted, reactive, ref} from "vue";

export default {
  setup(): any {
    onMounted(() => {
      countdown()  //页面一加载成功就执行
    })

    let timer = null
    let count: number = ref(10)

    //倒计时
    function countdown() {
      timer = setInterval(() => {
        count.value = count.value-1
        if (count.value             
关注
打赏
1688896170
查看更多评论
0.0460s