input2 Vue(version 3) 주요 기능 정리(v-model) #4 v-model 의 기능을 소개해 보고자 합니다. 일단 vuejs를 쓰는 이유중에 하나 이기도 한 v-model은 입력 Element와 밀접한 관련이 있다. 주로 Input 에 사용하기 때문이다. 그리고 REST Api와도 관련이 있을 것이다. 이 페이지에서는 v-model을 input text에서 사용하는 법을 적어본다. const id = ref('') let vueLessId: string | null = '' // 입력 이벤트 const eventInput = (payload: Event) => { const target = payload.target as HTMLInputElement if (/(&#@)/.test(target.value)) { alert('특수문자 안돼~') } vueLessId.. 2024. 1. 28. 크롬에서 input text에 아이디가 채워지는 현상 크롬 기반 브라우저는 로그인 시 아이디와 비밀번호를 저장하는 기능이 있다. 여기서 "저장"을 누르게 되면 브라우저에 아이디와 비밀번호가 저장이 되고, 해당 도메인에서 뜻하지 않게 input text에 아이디가 채워지는 효과가 있다. https://stackoverflow.com/questions/15738259/disabling-chrome-autofill Disabling Chrome Autofill I have been running into issues with the chrome autofill behavior on several forms. The fields in the form all have very common and accurate names, such as "email", "name".. 2022. 9. 22. 이전 1 다음 반응형