7 lines
132 B
JavaScript
7 lines
132 B
JavaScript
import * as types from './mutation_types';
|
|
|
|
export default {
|
|
[types.SET_SEARCH](state, value) {
|
|
state.search = value;
|
|
},
|
|
};
|