프론트엔드 개발
vue - input enter시 함수를 2번 호출하는 에러 수정 본문
아래와 같이 enter를 눌렀을 경우 함수가 2번 호출되는 문제가 있었는데 해결한 경험을 공유하겠습니다
<template>
<input
type="text"
@keyup.enter="handler"
/>
</template>
간단하게 keyup => keypress로만 수정하면 됩니다
<template>
<input
type="text"
@keypress.enter="handler"
/>
</template>
수정이 완료되었다면 네트워크 탭에서 맞게 호출하고 있는지 확인해보세요
'Front-End > Error 해결' 카테고리의 다른 글
zsh: command not found: code (2) | 2022.07.21 |
---|---|
[next js + typescript 모듈 import error]Could not find a declaration file for module (0) | 2021.08.14 |
[오류 수정] Browserslist: caniuse-lite is outdated. Please run:npx browserslist@latest —update-db (0) | 2021.07.20 |
[git].gitignore 적용 안될때 (0) | 2021.07.18 |
[git]Logon failed, use ctrl+c to cancel basic credential prompt (0) | 2021.07.17 |
Comments