[Client] Improve usability

Resolve #4094
This commit is contained in:
syuilo 2019-02-02 22:59:11 +09:00
parent 2a50997a75
commit 4ea7e711ce
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 7 additions and 1 deletions

View file

@ -184,6 +184,12 @@ export default Vue.extend({
}
}
});
this.$on('keydown', (e: KeyboardEvent) => {
if (e.code == 'Enter') {
this.$emit('enter');
}
});
},
methods: {
focus() {