fix(UI测试): ui命令分类下拉框报错

This commit is contained in:
chenjianxing 2022-04-06 16:40:28 +08:00 committed by 刘瑞斌
parent 461b0da203
commit fd85967add
2 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ const state = {
selectCommand: {},
//按照type分组的指令
groupedCmd: {},
selectUiGroup: '',
librarySelectElement: {},
uiElementLibraryModuleIds: null,
refreshUiScenario: false,

View File

@ -27,6 +27,7 @@ const mutations = {
setGroupedCmd: (state, value) => state.groupedCmd = value,
setUiElementLibraryModuleIds: (state, value) => state.uiElementLibraryModuleIds = value,
setRefreshUiScenario: (state, value) => state.refreshUiScenario = value,
setSelectUiGroup: (state, value) => state.selectUiGroup = value,
}
export default mutations;