From 6305acef3bd25f51b408b38a9f4f11c3040480c5 Mon Sep 17 00:00:00 2001 From: schneefux Date: Tue, 8 May 2018 11:02:48 +0200 Subject: frontend template setup --- src/App.vue | 14 ++++++++++++++ src/index.html | 10 ++++++++++ src/index.js | 12 ++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 src/App.vue create mode 100644 src/index.html create mode 100644 src/index.js (limited to 'src') diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..3335de9 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..fd3fe13 --- /dev/null +++ b/src/index.html @@ -0,0 +1,10 @@ + + + + + BrokenTalents + + +
+ + diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..be00b70 --- /dev/null +++ b/src/index.js @@ -0,0 +1,12 @@ +import Vue from 'vue'; +import Buefy from 'buefy' +import 'buefy/lib/buefy.css' + +import App from './App.vue'; + +Vue.use(Buefy) + +new Vue({ + el: '#app', + render: h => h(App) +}); -- cgit v1.3.1