11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
import Vue from 'vue';
|
|
import App from './App.vue';
|
|
import { ApplicationBootstrapper } from './presentation/Bootstrapping/ApplicationBootstrapper';
|
|
|
|
new ApplicationBootstrapper()
|
|
.bootstrap(Vue);
|
|
|
|
new Vue({
|
|
render: (h) => h(App),
|
|
}).$mount('#app');
|