I'm trying 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 didn't work. Any suggestion?