summaryrefslogtreecommitdiffstats
path: root/src/main.js
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-10-10 09:46:26 +0200
committerJulius Härtl <jus@bitgrid.net>2018-10-23 22:12:11 +0200
commitd5643d82ab8c8160e205970ca346bfba8a7ad947 (patch)
tree4e12655c10b24d00b6ed85d015a0a3f5f5d479e0 /src/main.js
parent72655b073486856467f0e57ea31fdbe52d493b6f (diff)
Add vuex structure
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js
index bf06512c..892e527b 100644
--- a/src/main.js
+++ b/src/main.js
@@ -23,6 +23,9 @@
import Vue from 'vue'
import App from './App'
+import store from './store';
+
+
Vue.prototype.t = t
Vue.prototype.n = n
Vue.prototype.OC = OC
@@ -30,5 +33,6 @@ Vue.prototype.OCA = OCA
/* eslint-disable-next-line no-new */
new Vue({
- render: h => h(App)
+ render: h => h(App),
+ store: store
}).$mount('#content')