aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/store/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/src/store/index.ts')
-rw-r--r--apps/files/src/store/index.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/files/src/store/index.ts b/apps/files/src/store/index.ts
new file mode 100644
index 00000000000..52007fef892
--- /dev/null
+++ b/apps/files/src/store/index.ts
@@ -0,0 +1,16 @@
+import Vue from 'vue'
+import Vuex, { Store } from 'vuex'
+
+import files from './files'
+import paths from './paths'
+import selection from './selection'
+
+Vue.use(Vuex)
+
+export default new Store({
+ modules: {
+ files,
+ paths,
+ selection,
+ },
+})