Open
Description
Is your feature request related to a problem? Please describe.
VueJS is pretty heavy on binding data using dot notation. This makes things pretty difficult when using Parse, as to get properties you need to use .get(key)
and .set(key)
.
This means that you have to constantly convert your data to and from JSON and Parse Objects.
Describe the solution you'd like
Be able to use dot notation for .get(key)
and .set(key)
. This would mean, for example, you could bind an input to obj.toJSON().name <input v-model="obj.toJSON().name" placeholder="edit me">
, without having to have a function to pass it to another JSON object.
Describe alternatives you've considered
Subclassing using Proxy, but doesn't work with vueJS