summaryrefslogtreecommitdiffstats
path: root/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 000000000..71ebfa1c5
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,12 @@
+import Vue from 'vue'
+import App from './App'
+
+Vue.prototype.t = t
+Vue.prototype.n = n
+Vue.prototype.OC = OC
+Vue.prototype.OCA = OCA
+
+export default new Vue({
+ el: '#content',
+ render: h => h(App),
+})