0.0.3 • Published 5 years ago

@spicycoding/vue-disable-autocomplete v0.0.3

Weekly downloads
1
License
-
Repository
-
Last release
5 years ago

Why?

This plugin solves the problem that chrome (or any other browser) doesn't support the autocomplete attribute anymore. It simply ignores the attribute, which is why i created this plugin.

How to use

import DisableAutocomplete from '@spicycoding/vue-disable-autocomplete';

Vue.use(DisableAutocomplete);

HTML attribute

You should add this attribute autocomplete="off" to the HTML input elements you want to disable autocomplete. For example:

<input type="email" name="email" autocomplete="off">