@talinon
I just discovered something else! they also see to the <label> tag!
because if it has the word "name" or "date" ... this will activate the autocomplete
<div class="form-group">
<label for="inputCertificationBody">Certification body name</label>
<input autocomplete="off"
class="form-control"
id="inputCertificationBody"
placeholder="Certification body name"
type="text"
v-model="newTraining.certificationBodyName">
as you can see label has the word "name" ==> result : autocomplete
<div class="form-group">
<label for="inputCertificationBody">Certification body </label>
<input autocomplete="off"
class="form-control"
id="inputCertificationBody"
placeholder="Certification body name"
type="text"
v-model="newTraining.certificationBodyName">
without that word , ==> result no autocomplete.
and in this case i have no choice because I cant remove the word "name"