“Object doesn't support this property or method” error in IE11

前端 未结 7 1067
野的像风
野的像风 2020-12-08 06:57

I am getting the error

Critical Error: Object doesn\'t support this property or method addeventlistener

while accessing the Info

7条回答
  •  独厮守ぢ
    2020-12-08 07:45

    What fixed this for me was that I had a React component being rendered prior to my core.js shim being loaded.

    import ReactComponent from '.'
    import 'core-js/es6'
    

    Loading the core-js prior to the ReactComponent fixed my issue

    import 'core-js/es6'
    import ReactComponent from '.'
    

提交回复
热议问题