While my Vue.js components work perfectly in Edge, Chrome, Firefox, and other browsers, they fail to render in IE11. I utilize gulp for project building and Babel for compiling es6 into es5.
.babelrc
{
"plugins": ["@babel/plugin-syntax-dynamic-import"],
"presets": [
["vue", {"eventModifiers": false}],
["@babel/preset-env",{"useBuiltIns": "entry"}]]
}
Could it be that I require additional presets?