ı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?`
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">