Transfers of stacks and using ndarrays
This commit is contained in:
parent
782ff05477
commit
b0f26f1b1e
3 changed files with 168 additions and 9 deletions
|
|
@ -15,7 +15,8 @@ export default new Vuex.Store({
|
|||
IHIEnabled: false,
|
||||
appTheme: "system",
|
||||
activeStreams: {},
|
||||
openInImjoyMenuItems: []
|
||||
openInImjoyMenuItems: [],
|
||||
openScanInImjoyMenuItems: []
|
||||
},
|
||||
|
||||
mutations: {
|
||||
|
|
@ -60,6 +61,9 @@ export default new Vuex.Store({
|
|||
},
|
||||
addOpenInImjoyMenuItem(state, newItem) {
|
||||
state.openInImjoyMenuItems.push(newItem);
|
||||
}, // TODO: add a mutation to remove items when plugins are unloaded
|
||||
addOpenScanInImjoyMenuItem(state, newItem) {
|
||||
state.openScanInImjoyMenuItems.push(newItem);
|
||||
} // TODO: add a mutation to remove items when plugins are unloaded
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue