原生js 页面30秒无操作自动刷新

    技术2022-07-11  139

    mounted() { this.interval = setInterval(() => { window.location.reload(); }, 30000); document.onclick = (event) => { clearInterval(this.interval); this.interval = setInterval(() => { window.location.reload(); }, 30000); }; }
    Processed: 0.013, SQL: 9