You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
4 years ago
|
const mutations = {
|
||
|
GET_TOKEN (state, val) {
|
||
|
state.token = val
|
||
|
},
|
||
|
GET_USER_INFO (state, val) {
|
||
|
state.userInfo = val
|
||
|
},
|
||
|
SET_ASK_EXAM_NUM (state, val) {
|
||
|
state.askExamNum = val
|
||
|
}
|
||
|
}
|
||
|
export default mutations
|