mutations.js 295 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 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; }, };