vue-turn-off-autocomplete
v1.0.1
Published
Plugin to fix browser`s disable autocomplete issue.
Downloads
463
Maintainers
Readme
vue-turn-off-autocomplete
This plugin fixes chrome and mozilla disable autocomplete issue.
How to:
Add attribute autocomplete="off"
to the HTML input elements or a form, you want to disable autocomplete. See example below:
<form method="post" action="" autocomplete="off">
<input type="text" name="username" autocomplete="off">
</form>
Enable mixin in your Vue:
import TurnOffAutocomplete from 'vue-turn-off-autocomplete';
Vue.use(TurnOffAutocomplete);