-
Notifications
You must be signed in to change notification settings - Fork 361
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
there is an error under ie11 #33
Comments
The actual |
Exported scripts as |
This does not exist when installing the package, and neither does |
I just ran into this exact issue and I was about to completely remove epic-spinners, but @ymmooot's instructions worked! I replaced my previous code: <script>
import { CirclesToRhombusesSpinner } from 'epic-spinners'
export default {
components: {
CirclesToRhombusesSpinner
}
}
</script> With: <script>
import 'epic-spinners/dist/lib/epic-spinners.min.css'
import { CirclesToRhombusesSpinner } from 'epic-spinners/dist/lib/epic-spinners.min.js'
export default {
components: {
CirclesToRhombusesSpinner
}
}
</script> Now all of my components are working as expected on IE11. |
I installed babel-polyfill ,but there is still the error.
The text was updated successfully, but these errors were encountered: