Open mcenkar opened 4 years ago
I'm interested to see this fixed, and see there is more recent discussion about this on the PR. What's the status? It was suggested a separate PR be filed to re-enable IE11 in browserslist, but it looks like that remains unresolved.
@bg I tried it out and it looks like it's not as easy as simply re-enabling IE11 in babel. https://github.com/nathanreyes/v-calendar/pull/512#issuecomment-590118124
Bump. I can't use this wonderful component until this is fixed.
Bump.
Currently if we look at https://unpkg.com/v-calendar@1.0.1/lib/v-calendar.umd.js there is a lot of code that is ES6. For example:
template strings:
classes:
computed properties:
shorthand properties:
spread:
and async functions:
I believe it would be useful if provided distribution was already transpiled down to ES5, so that users don't have to include extra configuration to transpile dependencies.
Arrow functions are already transpiled with babel: https://github.com/nathanreyes/v-calendar/blob/master/.babelrc
After adding some babel plugins all examples were compiled down to ES5.
I have opened pull request: #512
Possibly fixes some other issues: #339, #487, #500, #511.