summaryrefslogtreecommitdiffstats
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
parenta0709bc910606249ccd0d29423e58937bd9474ed (diff)
started vue developemnt (empty div so far :) )
Signed-off-by: Jonathan Treffler <mail@jonathan-treffler.de>
-rw-r--r--src/App.vue4
-rw-r--r--src/main.js12
2 files changed, 16 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 000000000..8ed32a48f
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,4 @@
+<template>
+ <div id="content" class="app-news">
+ </div>
+</template>
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),
+})