[TIL] v-textarea, v-textfield 한글, 영어 제한하기

Captainjack·2021년 11월 23일
0

TIL

목록 보기
100/258
<v-textarea
  class="rounded-lg"
  counter
  full-width
  single-line
  maxlength="6"
  no-resize
  background-color="white"
  hide-details
  v-model="onlyNumber"
  oninput="javascript: this.value = this.value.replace(/[ㄱ-ㅎ|ㅏ-ㅣ|가-힣|a-z|A-Z]/g, '' );"
  placeholder="생년월일6자리"
  height="50"
  outlined
></v-textarea>


reference

https://hjh0827.tistory.com/63

profile
til' CTF WIN

0개의 댓글