Closed nockstarr closed 3 years ago
Found my self needing support for nested properties so here is the code if you are interested.
Added method getDescendantProp(obj, path). The method getDescendantProp is applied were applicable in vue-virtual-table.vue.
getDescendantProp(obj, path)
getDescendantProp
vue-virtual-table.vue
Executed build Bumped package version
build
Example method usage:
// Access user.name this.getDescendantProp({user: {name: "userName", age: 43}}, "user.name") >> userName // Access user.age this.getDescendantProp({user: {name: "userName", age: 43}}, "user.age") >> 43
I will publish the new version later.
Do you have skype or slack? We can communicate more conveniently.
No, sorry
Found my self needing support for nested properties so here is the code if you are interested.
Added method
getDescendantProp(obj, path)
.The method
getDescendantProp
is applied were applicable invue-virtual-table.vue
.Executed
build
Bumped package version
Example method usage: