I use jquery for communication data with api rest.And use vue js for rendering data to my template, but i have error.
[Vue warn]: Error in render function: "TypeError: Cannot read property 'first_name' of undefined"
This my code :
var dashboard = new Vue({
el: '#dashboard',
data:{
profile: {}
}
});
axios.get(url_profile, { headers: {"Authorization": "JWT " + token} })
.then(function(res){
dashboard.$data.profile = res.data;
})
.catch(function(err){
toastr.err(err);
});
Thanks.
first_nameattribute?