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;