[Solved] Problems with Internet Explorer

When accessing the page through Internet Explorer I am getting these Errors:

I have found out what the caus of the problem is …

all pages which are loaded with routers async functionality return this error…

any idea on how to fix that?

I finally could figure out the real reason why it didn’t work.

IE doesnt support shorthand functions which are used in most of the documentary. I would recommend to change that in the docs so maximum compatibility is granted.

What i my by this?

e.g.

return {
    data() {
     ...
    }
   } 

this wont work in IE

this is the correct way:

return {
    data: function () {
     ...
    }
   }

Thanks, i changed docs