summaryrefslogtreecommitdiff
path: root/iridescence/src/store/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'iridescence/src/store/index.ts')
-rw-r--r--iridescence/src/store/index.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/iridescence/src/store/index.ts b/iridescence/src/store/index.ts
new file mode 100644
index 0000000..fb6015f
--- /dev/null
+++ b/iridescence/src/store/index.ts
@@ -0,0 +1,11 @@
+import Vue from "vue";
+import Vuex from "vuex";
+
+Vue.use(Vuex);
+
+export default new Vuex.Store({
+ state: {},
+ mutations: {},
+ actions: {},
+ modules: {}
+});