summaryrefslogtreecommitdiffstats
path: root/src/main.js
diff options
context:
space:
mode:
authorJonathan Treffler <mail@jonathan-treffler.de>2020-08-07 12:24:14 +0200
committerSimon Spannagel <simonspa@kth.se>2021-12-16 20:16:45 +0100
commit61849f2f6198f78c3c1165bdb776e9a7c65cdf8a (patch)
tree311879a5c3cb182438a0edc6e2ca5e8b8164c4bf /src/main.js
parenta0709bc910606249ccd0d29423e58937bd9474ed (diff)
started vue developemnt (empty div so far :) )
Signed-off-by: Jonathan Treffler <mail@jonathan-treffler.de>
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),
+})