select.js 279 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 const select = { state: { selectVal: '', selectValArr:[] }, mutations: { SELECT_VAL: (state, val) => { state.selectVal=val; }, SELECT_VAL_ARR: (state, val) => { state.selectValArr=val; } }, actions: { } } export default select