Front-End/Vue.js
vue input value 값 실시간 변경 감지
태나미
2022. 8. 14. 23:54
vue - input value값 변경 실시간 감지를 위해서 @input 사용
예시)
<temaplate>
<input type="text" @input="onChange($event)">
</temaplate>
<script>
onChange(event){
console.log(event.target.value)
}
<script>