I'm following the IE11 instructions per the Quick Start documentation. I've installed babel-polyfill via npm in my project directory and am importing babel-polyfill at the top of src/main.js. But IE11 is still throwing the following error:
SCRIPT438: Object doesn't support property or method 'from' File: vuetify.js, Line: 304, Column: 3
The referenced line reads:
return [].concat(_toConsumableArray(Array.from({ length: length }, function (v, k) { return k; })));
Do I need to use additional polyfills to make Vuetify work? I've seen other closed issues regarding this but most of them seemed to be happy with the documentation once it was added. I've been banging my head against the wall all day wondering what I'm missing. Please let me know if there's a solution or if anyone else has experienced this! Thanks!
I'm following the IE11 instructions per the Quick Start documentation. I've installed babel-polyfill via npm in my project directory and am importing babel-polyfill at the top of src/main.js. But IE11 is still throwing the following error:
SCRIPT438: Object doesn't support property or method 'from' File: vuetify.js, Line: 304, Column: 3The referenced line reads:
return [].concat(_toConsumableArray(Array.from({ length: length }, function (v, k) { return k; })));Do I need to use additional polyfills to make Vuetify work? I've seen other closed issues regarding this but most of them seemed to be happy with the documentation once it was added. I've been banging my head against the wall all day wondering what I'm missing. Please let me know if there's a solution or if anyone else has experienced this! Thanks!