keyup 이벤트를 사용한다.
<input v-on:keyup.enter="submit">
짧게 표현도 가능하다.
<!-- also works for shorthand --> <input @keyup.enter="submit">
Vue.js 엔터키 입력 처리