-
Notifications
You must be signed in to change notification settings - Fork 2
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
0a0ae61
commit 7ba9f7a
Showing
5 changed files
with
48 additions
and
18 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,21 @@ | ||
import { createStore } from 'vuex'; | ||
import { notification } from '@cnamts/synapse-bridge/modules/notification'; | ||
import VuexPersistence from 'vuex-persist'; | ||
|
||
export default createStore({}); | ||
import { RootState } from './types'; | ||
|
||
const vuexLocal = new VuexPersistence<RootState>({ | ||
storage: window.sessionStorage, | ||
}); | ||
|
||
const store = createStore({ | ||
state: {}, | ||
modules: { | ||
notification | ||
}, | ||
plugins: [ | ||
vuexLocal.plugin | ||
] | ||
}); | ||
|
||
export default store; |
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,8 @@ | ||
/* eslint-disable @typescript-eslint/no-empty-interface */ | ||
export interface RootState {} | ||
|
||
/** | ||
* This is used to properly type components using mappers from Vuex | ||
* @see https://github.com/vuejs/vuex/pull/1121 | ||
*/ | ||
export interface VuexBindings {} |