Skip to content

Commit 100c6a9

Browse files
committed
added uncompleted addBindingText to mutations.js
1 parent 686159c commit 100c6a9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/store/mutations.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,12 @@ const mutations = {
206206
[state.activeComponent]: state.activeComponentObj,
207207
};
208208
},
209-
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+
},
210215
[types.DELETE_ACTION_FROM_COMPONENT]: (state, payload) => {
211216
state.componentMap[state.activeComponent].actions = state.componentMap[state.activeComponent].actions.filter(
212217
(action) => action !== payload);

0 commit comments

Comments
 (0)