Vue#3 - 이벤트 핸들러

juyeong-s·2021년 7월 27일
0

Vue

목록 보기
3/15

1. 이벤트 핸들러

1-1. 버튼 click

<button v-on:click="js함수">
<button @click="js함수">   => 축약방식

js함수명 대신 동작 자체를 넣어도됨 -> "신고수 += 1"

1-2. 버튼 mouseover

<button @mouseover="js함수">

함수 안에서 데이터쓸 땐 this.데이터명

1-3. 이미지 넣기

절대경로 - http:/ 그냥 넣는다
상대경로 - ./assets/room0.jpg

무조건 ./로 시작한다

profile
frontend developer

0개의 댓글