fix(CountDown): fix ssr memory leak (#7808)

This commit is contained in:
neverland 2020-12-24 19:44:51 +08:00 committed by GitHub
parent b73d9f00a9
commit f5281f1e7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
import { createNamespace } from '../utils';
import { createNamespace, inBrowser } from '../utils';
import { raf, cancelRaf } from '../utils/dom/raf';
import { isSameSecond, parseTimeData, parseFormat } from './utils';
@ -92,6 +92,12 @@ export default createComponent({
},
tick() {
// should not start counting in server
// see: https://github.com/youzan/vant/issues/7807
if (!inBrowser) {
return;
}
if (this.millisecond) {
this.microTick();
} else {