-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IE 11 support #36
Comments
in IE, firefox doesn't work |
You're probably missing babel-polyfill for Array.from |
It works in IE11 but there are cosmetic issues. I dont want to open a separate issue. |
I have the problem with IE11 regarding pasting any data from the clipboard. |
You need to transpile it with babel yourself to support IE11. If you are using babel already, but with the It should look something like this: {
test: /\.(js)$/,
include: [
resolvePath('./src'),
/*
* Vue-masked-input does not support IE11 out of the box (has Array.from)
* see: https://github.com/niksmr/vue-masked-input/issues/36
*/
resolvePath(./'node_modules/vue-masked-input'),
],
use: [
{
loader: 'babel-loader',
},
],
}, |
Guys, is ie 11 supported? When I use phone mask it outputs ERROR string instead of mask in ie11
The text was updated successfully, but these errors were encountered: