koel/resources/assets/js/remote/app.ts
2022-04-24 11:50:45 +03:00

7 lines
174 B
TypeScript

import './staticLoader'
import { httpService } from '@/services'
import App from './app.vue'
import { createApp } from 'vue'
httpService.init()
createApp(App).mount('#app')