data() { return { variable: null } } mounted() { axios.get(url) .then(function (response) { this.variable = response.data }.bind(this)) //You need to put .bind(this) to keep the scoped variable }