Level 56
Not sure if I understood it well.
This will stop calling this.checkingNric() after the first time enter is pressed.
As you are using Vue, add the enterWasPressed: false variable to your component's data().
onPress(e){
if(e.keyCode == 13){
this.enterWasPressed = true;
}
if (! this.enterWasPressed) {
this.checkingNric(e.preventDefault());
}
},