We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7714284 commit acbc50cCopy full SHA for acbc50c
src/VueExcelEditor.vue
@@ -1375,11 +1375,16 @@ export default defineComponent({
1375
}
1376
1377
else {
1378
- if (!this.moveEast(e)) {
1379
- if (this.moveSouth(e))
1380
- this.moveToWest(e)
1381
- else
1382
- return this.inputBoxBlur()
+ if (this.autocompleteSelect !== -1 && this.autocompleteSelect < this.autocompleteInputs.length) {
+ this.inputAutocompleteText(this.autocompleteInputs[this.autocompleteSelect])
+ }
+ else {
+ if (!this.moveEast(e)) {
1383
+ if (this.moveSouth(e))
1384
+ this.moveToWest(e)
1385
+ else
1386
+ return this.inputBoxBlur()
1387
1388
1389
1390
e.preventDefault()
0 commit comments