I'm trying to add a polyfill
to my vue.js 2.0/Laravel5.3
application because in internet explorer 11 I receive an error:
vuex requires a Promise polyfill in this browser.
So I've followed the docs I'm using ecm 6 so I did:
npm install --save-dev babel-polyfill
And added this at the top in my bootstrap.js:
import "babel-polyfill";
But still the same error in Internet explorer. What should I do or what am I doing wrong here?
To use a polyfill library, load it like any other JavaScript file or module. For example, you can use a <script> tag in the add-in's home page HTML file (for example <script src="/js/core-js. js"></script> ), or you can use an import statement in a JavaScript file (for example, import 'core-js'; ).
A polyfill is a piece of code (usually JavaScript on the Web) used to provide modern functionality on older browsers that do not natively support it.
Note: ECMAScript 2015 (ES6) is Partially Supported on Internet Explorer 11.
Fetch is Not Supported on Internet Explorer 11.
If you are using Webpack, find your webpack.base.conf.js
file (mine was in the build
folder), or the equivalent webpack configuration file, then modify the app entry variable to include babel-polyfill
at the start so it looks something like this:
entry: {
app: ['babel-polyfill', ...]
},
.
.
.
@doulmi
Add this to your package.json file:
"babel-polyfill": "^6.20.0"
After that npm install
.
Add this at the top of you main js file:
import "babel-polyfill";
Compile everything. That should work.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With