how can i use this inside axios?
example:
Don't work
this.$axios.get("").then(function(response){ this.data = response.data })
Works
let handler = this
this.$axios.get("").then(function(response){ handler.data = response.data })
is it possible to use the first option?