This repository has been archived on 2021-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
find_coach/src/store/modules/requests/mutations.js

6 lines
89 B
JavaScript

export default {
addRequest(state, payload) {
state.requests.push(payload);
}
};