Package Exports
- vue-set-path
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-set-path) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-set-path

Set Vue reactive properties on an object, using dot notation path syntax
Install
npm install vue-set-pathUse
import { setOne, setMany } from 'vue-set-path'
const obj = {}
setOne(obj, 'foo.bar.baz', 'New value')
// This will set obj.foo.bar.baz = 'New value'
// Intermediate objects are automatically created
setMany(obj, {
'foo.bar.baz', 'New value',
'qux': 'Another value'
})
// The same as setOne, but uses an object map to set multiple properties