[Vuejs]-Data is null outsdie of the function (Vuejs)

1👍

Try changing the success function to an arrow function, so from:

success : function(result){ ... }

to:

success :  result => { ... }

The reason for this is that a non-arrow function changes “this”

👤CvP

Leave a comment