From 63c283d8bda6584f5c7ec1b380f74de5cfba3229 Mon Sep 17 00:00:00 2001 From: Amumu Date: Thu, 8 Jul 2021 09:36:56 +0800 Subject: [PATCH] =?UTF-8?q?fix(touch-emulator):=20=E6=B7=BB=E5=8A=A0=20Ele?= =?UTF-8?q?ment.prototype.matches=20=E7=9A=84polyfill=20(#8992)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/vant-touch-emulator/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/vant-touch-emulator/index.js b/packages/vant-touch-emulator/index.js index b6d3d0a20..3d5843e14 100644 --- a/packages/vant-touch-emulator/index.js +++ b/packages/vant-touch-emulator/index.js @@ -51,6 +51,12 @@ }; } + if (!Element.prototype.matches) { + Element.prototype.matches = + Element.prototype.msMatchesSelector || + Element.prototype.webkitMatchesSelector; + } + if (!Element.prototype.closest) { Element.prototype.closest = function (s) { var el = this;