diff --git a/src/components/chips/Chips.vue b/src/components/chips/Chips.vue index 8a43794d2..fa165ca88 100755 --- a/src/components/chips/Chips.vue +++ b/src/components/chips/Chips.vue @@ -86,7 +86,7 @@ export default { default: if (this.separator) { - if (this.separator === ',' && event.which === 188) { + if (this.separator === ',' && (event.which === 188 || event.which === 110)) { this.addItem(event, inputValue, true); } }