본문 바로가기
💻CODING/react. vue

[react] Input elements should have autocomplete attributes (suggested: "current-password") 오류

by 코딩하는 갓디노 2021. 12. 1.

Input elements should have autocomplete attributes (suggested: "current-password") 오류 해결

 

react의  input에서 type="password"
사용시 나오는 오류입니다.

 

오류 메시지

오류: [DOM] Input elements should have autocomplete attributes (suggested: "current-password")

 

해결 방법

input 태그 안에 autoComplete="on" 속성을 추가합니다.

<input
	autoComplete="on"
	type="password"
	name="pass"
	placeholder="영문, 숫자 조합으로 8자 이상 입력"
	required="required"
	onChange={handleChange}
/>

 

 

반응형

댓글