0.1.0 • Published 7 years ago
vue-set v0.1.0
vue-set
This is a simple utility mimicking lodash.set, but it allows the caller to optionally pass a custom setter function like Vue.set (this.$set in components). If no setter is passed, set uses the assignment operator.
Note: This module uses ES6 syntax.
Useage
set(object, path, value, [setter])object: objectpath: array, stringvalue: any[setter]: function
Example with Vuex
import Vue from 'vue'
import set from 'vue-set'
export default {
state: {
obj: {},
},
mutations: {
setAttributeValueAtYearAndSemester(state, data) {
let { year, semester, key, value } = data
set(state.obj, [ year, semester, key ], value, Vue.set)
// state.obj is now properly reactive
},
},
}0.1.0
7 years ago