mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-21 19:41:23 +01:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
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`);
|