엘리먼트 참조
input 태그로 포커스는 주는 등 엘리먼트를 직접 참조해야 할 필요가 있습니다.
Vue3 + TypeScript에서는 ref 속성을 이용해서 가능합니다.
<input ref="code1" class="form-control" type="text" @input="onTextInput($event)" />
참조할 엘리먼트에 ref 속성을 부여한 후 ref 이름과 동일한 ref를 script setup에서 만들어 줍니다.
<script setup...
dimohy.slogs.dev1 min read