vue页面设置定时刷新

在项目开发中遇到要定时刷新页面的情况,将解决方法做个笔记记录一下。
if (this.timer) {
      clearInterval(this.timer);
    } else {
      this.timer = setInterval(() => {
        this.test();
      }, 600000); //10分钟刷新一次页面
    }
  }

你可能感兴趣的:(vue页面设置定时刷新)