6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
|
import * as types from './mutation_types';
|
||
|
|
||
|
export const setSearch = ({ commit }, value) => {
|
||
|
commit(types.SET_SEARCH, value);
|
||
|
};
|