mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 04:11:27 +09:00
hubez-admin partner-git master -> hubez-git transfer 202205241800
This commit is contained in:
24
frontend/src/store/search-condition.js
Normal file
24
frontend/src/store/search-condition.js
Normal file
@@ -0,0 +1,24 @@
|
||||
const state = {
|
||||
searchCondition: null
|
||||
}
|
||||
|
||||
const getters = {
|
||||
getSearchCondition: state => state.searchCondition,
|
||||
}
|
||||
|
||||
const mutations = {
|
||||
updateSearchCondition: (state, data) => {
|
||||
state.searchCondition = data;
|
||||
}
|
||||
}
|
||||
|
||||
const actions = {
|
||||
}
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state,
|
||||
getters,
|
||||
mutations,
|
||||
actions
|
||||
};
|
||||
Reference in New Issue
Block a user