angular在IE下有时会报object doesn't support property or method matches问题
同时,在router-outlet切换时,不删除原组件而是添加一个新组件,并将原组件挤到<router-outlet></router-outlet>下方
在polyfill.ts文件中添加如下代码,即可解决上如题所述两个问题。
if (!Element.prototype.matches) {
Element.prototype.matches = Element.prototype.msMatchesSelector;
}