summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Treffler <mail@jonathan-treffler.de>2020-08-07 12:27:39 +0200
committerSimon Spannagel <simonspa@kth.se>2021-12-16 20:17:31 +0100
commite11573e64736f838b05b9af84b0a26d13c1aac3f (patch)
tree33408ac6cd301ccf98a8c5cc5b75fcbc1456b6a4
parent37898a62b13e0c453039a94f689e60eee116f42f (diff)
added Vuex to main.js
Signed-off-by: Jonathan Treffler <mail@jonathan-treffler.de>
-rw-r--r--src/main.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
index 71ebfa1c5..bcbbfe2a4 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,4 +1,5 @@
import Vue from 'vue'
+import Vuex from 'vuex'
import App from './App'
Vue.prototype.t = t
@@ -6,6 +7,8 @@ Vue.prototype.n = n
Vue.prototype.OC = OC
Vue.prototype.OCA = OCA
+Vue.use(Vuex)
+
export default new Vue({
el: '#content',
render: h => h(App),