mutations.js 295 Bytes
import * as Types from './types';

export default {
  [Types.FETCH_COMMENT_REQUEST](state) {
    state.fetchCommenting = true;
  },
  [Types.FETCH_COMMENT_SUCCESS](state) {
    state.fetchCommenting = false;
  },
  [Types.FETCH_COMMENT_FAILD](state) {
    state.fetchCommenting = false;
  },
};