Vue.set with dot notation support (`'a.b.c'`) paths.
npm install vue-set-value> Create nested values and any intermediaries on vue reactive objects using dot notation ('a.b.c') paths.
This project is only fork of great package set-value made by Jon Schlinkert
Install with npm:
``sh`
$ npm install --save vue-set-value
`js`
var vueDeepSet = require('vue-set-value');
vueDeepSet(object, prop, value);
* object {object}: The object to set value onprop
* {string}: The property to set. Dot-notation may be used.value
* {any}: The value to set on object[prop]
Updates and returns the given object:
`js`
vueDeepSet(target, 'a.b.c', 'd');
console.log(target);
//=> { a: { b: { c: 'd' } } }
Escaping with backslashes
Prevent set-value from splitting on a dot by prefixing it with backslashes:
`js
console.log(vueDeepSet(target, 'a\\.b.c', 'd'));
//=> { 'a.b': { c: 'd' } }
console.log(vueDeepSet(target, 'a\\.b\\.c', 'd'));
//=> { 'a.b.c': 'd' }
``
Copyright © 2018, Yaroslav Dobzhanskij.
Copyright © 2018, Jon Schlinkert.
Released under the MIT License.