fix(@vant/touch-emulator): add SSR support (#8767)

This commit is contained in:
Amumu 2021-05-26 11:56:59 +08:00 committed by chenjiahan
parent eeac061682
commit 35683a0d05

View File

@ -4,6 +4,10 @@
* Sourcehttps://github.com/hammerjs/touchemulator
*/
(function () {
if (typeof window === 'undefined') {
return;
}
var eventTarget;
var supportTouch = 'ontouchstart' in window;
@ -195,3 +199,4 @@ TouchEmulator['multiTouchOffset'] = 75;
if (!supportTouch) {
new TouchEmulator();
}
})();