Files
privacy.sexy/src/main.ts
2020-01-01 12:31:41 +01:00

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');