Работа над клиентской частью

This commit is contained in:
Book Pauk
2022-08-18 18:53:06 +07:00
parent 41d1dc1441
commit 3850a7d624
6 changed files with 267 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
// initial state
const state = {
apiError: null,
config: {},
};
// getters
@@ -11,8 +11,8 @@ const actions = {};
// mutations
const mutations = {
setApiError(state, value) {
state.apiError = value;
setConfig(state, value) {
state.config = value;
},
};