WIP of display modules. Vue parcel setup.

This commit is contained in:
2020-08-26 00:44:22 +02:00
parent 43153bc697
commit 28cec0b7b4
11 changed files with 622 additions and 0 deletions

7
main.js Normal file
View File

@@ -0,0 +1,7 @@
import Vue from 'vue';
import App from './App.vue';
new Vue({
render: h => h(App)
}).$mount('#app');