Vue Google Chrome Password Autofill disable

Murat Can Kağıtcı picture Murat Can Kağıtcı · Apr 17, 2020 · Viewed 10.3k times · Source

ım tryign to disable reminder of my password input field at my login screen. Here is my input field`

<r-input
        type="text"
        id="login_username"
        width="95%"
        v-model="formJson.username"
        labelColor="white"
        @keyup.enter="handleLogin"
      ></r-input>

I tried autocomplete=off but it didnt work, any suggestion?`

Answer

Wendel086 picture Wendel086 · Sep 9, 2020

try this: vue-disable-autocomplete

How to use

import DisableAutocomplete from 'vue-disable-autocomplete';

Vue.use(DisableAutocomplete);

HTML attribute

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