Within Vue.js I am firing an event like this:
this.$emit("change", this.data);
The parent receives that data and every time the event is an object. But the event consists of values and an observer. For example:
{
data: ['Joe Doe'],
__ob__: Observer
}
How can I just keep grabbing all the values from an object and skip the __ob__ part?
