我遇到的问题是我的应用程序在IE中显示错误Object doesn't support the property or method 'matches'
,这就是为什么我在polyfills.ts
文件中添加了以下内容的原因:
if (!Element.prototype.matches) {
Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
}
但是,从angular6升级到angular7(或更可能是因为我将打字稿模块更新到3.1.3)之后,我现在遇到了错误
TS2339:类型“元素”上不存在属性“ msMatchesSelector”
在构建应用程序时。有什么问题吗?