vue-set-value

1.0.3 • Public • Published

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

Install with npm:

$ npm install --save vue-set-value

Usage

var vueDeepSet = require('vue-set-value');
vueDeepSet(object, prop, value);

Params

  • object {object}: The object to set value on
  • prop {string}: The property to set. Dot-notation may be used.
  • value {any}: The value to set on object[prop]

Examples

Updates and returns the given object:

vueDeepSet(target, 'a.b.c', 'd');
console.log(target);
//=> { a: { b: { c: 'd' } } }

Escaping

Escaping with backslashes

Prevent set-value from splitting on a dot by prefixing it with backslashes:

console.log(vueDeepSet(target, 'a\\.b.c', 'd'));
//=> { 'a.b': { c: 'd' } }
 
console.log(vueDeepSet(target, 'a\\.b\\.c', 'd'));
//=> { 'a.b.c': 'd' }

License

Copyright © 2018, Yaroslav Dobzhanskij. Copyright © 2018, Jon Schlinkert. Released under the MIT License.

/vue-set-value/

    Package Sidebar

    Install

    npm i vue-set-value

    Weekly Downloads

    63

    Version

    1.0.3

    License

    MIT

    Unpacked Size

    7.23 kB

    Total Files

    4

    Last publish

    Collaborators

    • yarsky