-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
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
input spellcheck="false" does not work #1350
Comments
you need to cast your value to boolean, currently you are passing a string That's the same behaviour as vue2 |
this one should be changed because It does work properly on Vue 2 by leaving the value to |
This still seems to be an issue despite the fix merged on June 12th. As I understand it, this should stop the spellchecker on iOS Safari: Using the latest ( I've tried all other variants in desperation too, yet spellcheck persists in them all: I might be doing something silly, but if not then this is an outstanding issue and not fixed by 4492b88. |
The attribute is being set properly. You might need other attributes: https://stackoverflow.com/questions/254712/disable-spell-checking-on-html-textfields |
Thanks so much for the swift reply here @posva. I was actually looking at that SO post earlier today, and believe I've set everything correctly (though I may be being a dumbass). My code above was a simplified example, my actual code that's not working is:
I would have expected the above to work, but it's still autocorrecting for me with |
Version
3.0.0-beta.14
Reproduction link
https://jsfiddle.net/danyadev/qtgvsc57/1/
Steps to reproduce
Create a input and set the spellcheck="false" attribute to it
What is expected?
Spellcheck is turned off
What is actually happening?
If you look in DevTools, you will see spellchecker="true" there.
The example also created input outside the vue component, and there the spelling check is really turned off.
The text was updated successfully, but these errors were encountered: