3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
7
8
9
10
11
12
|
import * as types from './mutation-types'
const mutations = {
[types.SET_MSEID] (state, mseId) {
state.mseId = mseId
},
[types.SET_USERNAME] (state, name) {
state.userName = name
}
}
export default mutations
|