[Vue warn]: Error in v-on handler: "TypeError: Cannot read properties of undefined (reading '변수명')" TypeError: Cannot read properties of undefined (reading '변수명') 최근 Vue3만 하다가 오랜만에 Vue2를 하는데 만난 에러 클릭하면 pressedEL 함수가 동작하게 만들었는데 methods: { pressedEl: () => { console.log(this.변수명) }, } 왜지? 고민하다가 생각난게 Node 버전이 낮을 때 ES6 문법 사용이 안 된다는 것. 참고로 12.10.0 사용 중임. 그래서 화살표 함수(() => {})에서 함수 표현식(function () {})으..
문자열 길이 제한을 두려고 함. 처음에는 정규표현식을 써야 하나 고민했는데 몇 자만 추가하면 되는거였음. maxlengthValid for text, search, url, tel, email, and password, it defines the maximum number of characters (as UTF-16 code units) the user can enter into the field. This must be an integer value 0 or higher. If no maxlength is specified, or an invalid value is specified, the field has no maximum length. This value must also be greater t..