이벤트 핸들링
이벤트 핸들링
- 이벤트 핸들러를
@click
디렉티브에 연결할 때()
는 생략 가능 - 핸들러 함수의 인자로
event 객체
가 넘어옴
<template>
<button @click="handler">click 1</button>
<button @click="handler">click 2</button>
</template>
<script>
export default {
methods: {
handler(e) {
console.log( e );
}
}
}
// console
PointerEvent {isTrusted: true, pointerId: 1, width: 1, height: 1, pressure: 0, …}
</script>
- 인자를 넣고 싶을 때
event 객체
를 넘기는 방법은$event
를 넘김
<template>
<button @click="handler('hi1', $event)">click 1</button>
<button @click="handler('hi2', $event)">click 2</button>
</template>
<script>
export default {
methods: {
handler(msg, e) {
console.log( msg, e );
}
}
}
// console
// click 1 클릭시
hi1
PointerEvent {isTrusted: true, pointerId: 1, width: 1, height: 1, pressure: 0, …}
</script>
- 하나의 요소에 이벤트 핸들러를 여러개 붙일 수 있다.
- 이벤트 핸들러를 여러개 붙일 때는
()
를 생략하면 작동하지 않는다. ( 주의! )
<template>
<button @click="handlerA(), handlerB()">click 1</button>
</template>
<script>
export default {
methods: {
handlerA() {
console.log( 'A' );
},
handlerB() {
console.log( 'B' );
}
}
}
// console
A
B
</script>
Author And Source
이 문제에 관하여(이벤트 핸들링), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jude-ui/이벤트-핸들링저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)