mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 19:50:37 +00:00
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
|
|
import Vue from 'vue';
|
||
|
|
import App from './components/App';
|
||
|
|
import router from './router';
|
||
|
|
|
||
|
|
new Vue({ // eslint-disable-line no-new
|
||
|
|
router,
|
||
|
|
el: '#app',
|
||
|
|
render: h => h(App),
|
||
|
|
});
|