We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 686159c commit 100c6a9Copy full SHA for 100c6a9
src/store/mutations.js
@@ -206,7 +206,12 @@ const mutations = {
206
[state.activeComponent]: state.activeComponentObj,
207
};
208
},
209
-
+ // //add binding
210
+ [types.addBindingText]: (state, payload) => {
211
+ //access the htmlList, add payload to the empty bind obj
212
+ //state.component
213
+ console.log(state.componentMap[state.activeComponent])
214
+ },
215
[types.DELETE_ACTION_FROM_COMPONENT]: (state, payload) => {
216
state.componentMap[state.activeComponent].actions = state.componentMap[state.activeComponent].actions.filter(
217
(action) => action !== payload);
0 commit comments