Vue 이벤트 수정자

1260 단어
다음과 같은 이벤트를 수행하고 싶다고 생각해 보십시오.
<Modal @ok.prevent="doNothing">
Modal Code
</Modal>
즉, 모드의 ok 단추를 눌렀을 때 이 사건을 막기를 원합니다.이 경우 prevent 수정자는 다음에 제시된 코드를 통해 실현할 수 있습니다.
okButtonClickedMethod(e) {
   //First emit the ok event, then check if it is prevented or not
    emit('ok', e);
     //then hides modal
     if (e.defaultPrevented) {
          //emitted event is prevented now
     }
}
**** 해피 코딩***

좋은 웹페이지 즐겨찾기