Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import client from '@/api/loginAPI.js';
const state = {
status: undefined,
};
export const POST_TOKEN = 'POST_TOKEN';
const actions = {
[POST_TOKEN]: async ({ commit }, token) => {
const data = {
token: token
};
await client.newEmailConfirm(data).then(response => {
commit('SET_STATUS', response);
});
},
};
export const SET_STATUS = 'SET_STATUS';
const mutations = {
[SET_STATUS]: (state, response) => {
if (response === true) {
state.status = true;
} else {
state.status = false;
}
},
};
export default {
namespaced: true,
state,
actions,
mutations,
};