mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 05:12:34 +09:00
TC 수정
This commit is contained in:
@@ -1,34 +1,34 @@
|
||||
const state = {
|
||||
dataStore: ''
|
||||
,userSeq: ''
|
||||
,userId: ''
|
||||
}
|
||||
|
||||
const getters = {
|
||||
getDataStore: state => state.dataStore,
|
||||
getUserSeq: state => state.userSeq,
|
||||
getUserId: state => state.userId,
|
||||
}
|
||||
|
||||
const mutations = {
|
||||
updateDataStore: (state, data) => {
|
||||
state.dataStore = data;
|
||||
},
|
||||
updateUserSeq: (state, data) => {
|
||||
state.userSeq = data;
|
||||
},
|
||||
updateUserId: (state, data) => {
|
||||
state.userId = data;
|
||||
}
|
||||
}
|
||||
|
||||
const actions = {
|
||||
}
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state,
|
||||
getters,
|
||||
mutations,
|
||||
actions
|
||||
const state = {
|
||||
dataStore: ''
|
||||
,userSeq: ''
|
||||
,userId: ''
|
||||
}
|
||||
|
||||
const getters = {
|
||||
getDataStore: state => state.dataStore,
|
||||
getUserSeq: state => state.userSeq,
|
||||
getUserId: state => state.userId,
|
||||
}
|
||||
|
||||
const mutations = {
|
||||
updateDataStore: (state, data) => {
|
||||
state.dataStore = data;
|
||||
},
|
||||
updateUserSeq: (state, data) => {
|
||||
state.userSeq = data;
|
||||
},
|
||||
updateUserId: (state, data) => {
|
||||
state.userId = data;
|
||||
}
|
||||
}
|
||||
|
||||
const actions = {
|
||||
}
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state,
|
||||
getters,
|
||||
mutations,
|
||||
actions
|
||||
};
|
||||
Reference in New Issue
Block a user