data () {
return {
theme:theme,
? ? timer:null, 定時器名稱
? ? // 滾動字母
? ? digits:123456,?
調(diào)用
mounted () {
// 延時定時器
? this.timer=setInterval(()=>{
// console.log(this.digits);
// 刷新頁面
// window.location.reload()
? ? this.digits++
// console.log(this.digits++)
? },1000)
離開頁面時清除定時器
beforeDestroy() {
// 清除定時器
? clearInterval(this.timer);
? this.timer =null;