|
vue中清除定时器的时候!!!!!!,除了在methods中要使用window.clearInterval之外千万记得要在beforeDestroy或者destroyed中清除!!!!!!!!!!!!!!!!!!
clearTurnPage(){
window.clearInterval(this.myClear5);
},destroyed(){
if(this.myClear5){
clearInterval(this.myClear5);
}
} |
|
最新喜欢: |