added vue solo project create modules without webpack

This commit is contained in:
headwinds 2018-10-10 14:16:13 -04:00
parent 92b915bd7e
commit 05bcd106d7
39 changed files with 19857 additions and 1 deletions

12
vue-solo/src/main.js Normal file
View file

@ -0,0 +1,12 @@
import App from './components/App.js';
// TODO style frame wieder raus?
// TODO stattdessen global styles und css in js als alternative?
// TODO examples schöner machen
// TODO CSS in JS example
// TODO CSS kopieren
// TODO babel
new Vue({
render: h => h(App),
}).$mount(`#app`);