-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48043fb
commit f9bd986
Showing
24 changed files
with
1,216 additions
and
450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
laxy_frontend/src/components/pipelines/nf-core-rnaseq/store/module/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { make } from 'vuex-pathify'; | ||
|
||
const initial_state: any = { | ||
//flags: { all: false }, | ||
strandedness: 'unstranded', | ||
}; | ||
|
||
const getters: any = { | ||
// exampleGetter(state: any, getters: any, rootState: any, rootGetters: any) { }, | ||
...make.getters(initial_state), | ||
}; | ||
|
||
const mutations: any = { | ||
...make.mutations(initial_state), | ||
}; | ||
|
||
const actions: any = { | ||
// async exampleAction({ state, commit, rootState, rootGetters}: any, params: any) { } | ||
}; | ||
|
||
export const storeModule = { | ||
namespaced: true, | ||
//name: pipeline_name, | ||
state: initial_state, | ||
getters: getters, | ||
mutations: mutations, | ||
actions: actions, | ||
} | ||
|
||
export default storeModule; |
Oops, something went wrong.