Posts by Vitor Ceron • 19 points
3 posts
-
0
votes1
answer687
viewsA: JS/Vue CPF validator
At the end of your function, you are calling forgotMain as follows forgotmain() change to: this.forgotmain()
-
1
votes1
answer40
viewsA: context "this" does not return correct
It happens that there are moments in some functions that change the context of this, and so you can no longer access it, an example of this is the function setInterval, where within the execution of…
-
0
votes3
answers86
viewsA: vuejs returns student object null when trying to search student by id
Sometimes Axios changes the "this" reference and then you cannot access it to assign the response value to "student", to solve this a possible solution would be to leave your updateStudent method as…