summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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),