My Vue.js-powered application is performing flawlessly in all web browsers, except for one...
Upon attempting to launch it on Internet Explorer, a frustrating error appears:
An anticipated identifier in vue.min.js, line 6 character 4872
Locating the specified line and character reveals that the issue lies within this snippet of code:
var i=e.extends;
Precisely, IE highlights the dot following 'extends' when pinpointing the error.
The inclusion of Vue.js from https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.2/vue.min.js leads to the same problem even if included locally.
Is there a resolution to this dilemma other than instructing users to opt for an alternative browser?