Encountering an issue in IE11 where I receive an InvalidCharacterError when attempting to validate a form using vee validate in vue.js. It seems like it might be related to a polyfill error, but I'm uncertain. I have tried debugging by removing certain parts of my code, yet the problem persists. Additionally, I have attempted to label errors and explore other solutions without success.
For further reference, you can view the error here: https://i.stack.imgur.com/PyYIn.png
Below is a snippet of the code:
validateBeforeSubmit() {
this.$validator.validateAll().then(result => {
if (result) {
//submit
}
})
}
The error specifically occurs upon clicking the submit button.
Edit:
This issue has resurfaced recently. I am already using babel-polyfill and have imported it. Interestingly, other pages utilizing arrow functions and promises work seamlessly in IE11.