diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-05-08 11:02:48 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-05-08 11:02:48 +0200 |
| commit | 6305acef3bd25f51b408b38a9f4f11c3040480c5 (patch) | |
| tree | f8d45885f66ef85eb1bd4079034e8bd72fdba0d3 /src/index.js | |
| parent | 9f12ba674bb824627ceb648e79a2fa7065a1e51d (diff) | |
| download | brokentalents-6305acef3bd25f51b408b38a9f4f11c3040480c5.tar.gz brokentalents-6305acef3bd25f51b408b38a9f4f11c3040480c5.zip | |
frontend template setup
Diffstat (limited to 'src/index.js')
| -rw-r--r-- | src/index.js | 12 |
1 files changed, 12 insertions, 0 deletions
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) +}); |
