summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/stores/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/notes/stores/index.js')
-rw-r--r--app/assets/javascripts/notes/stores/index.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/assets/javascripts/notes/stores/index.js b/app/assets/javascripts/notes/stores/index.js
index d41b02b4a4b..c4895f58656 100644
--- a/app/assets/javascripts/notes/stores/index.js
+++ b/app/assets/javascripts/notes/stores/index.js
@@ -4,4 +4,8 @@ import notesModule from './modules';
Vue.use(Vuex);
-export default () => new Vuex.Store(notesModule());
+// NOTE: Giving the option to either use a singleton or new instance of notes.
+const notesStore = () => new Vuex.Store(notesModule());
+
+export default notesStore;
+export const store = notesStore();