I have have object problem is when I assign object to data property it converts into proxy object .
Here is what I am doing
data() {
return {
msg: "",
notifications: {},
};
},
this.notifications = TokenService.getUserInfo().unread_notifications;
Thats how I am receiving object
Proxy {0: {…}, 1: {…}, 2: {…}, 3: {…}, 4: {…}}
[[Handler]]: Object
[[Target]]: Array(5)
[[IsRevoked]]: false
What is the reason?