ivue-material-plus
Version:
A high quality UI components Library with Vue.js
20 lines (15 loc) • 407 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var lodashUnified = require('lodash-unified');
const getProp = (obj, path, defaultValue) => {
return {
get value() {
return lodashUnified.get(obj, path, defaultValue);
},
set value(val) {
lodashUnified.set(obj, path, val);
}
};
};
exports.getProp = getProp;
//# sourceMappingURL=objects.js.map