REMOVE_COMMENT(state, id) {
      const index = state.comments.findIndex(v => v.id === id);
      state.comments.splice(index, 1);
    }