koel/resources/assets/js/remote/app.ts

8 lines
174 B
TypeScript
Raw Normal View History

2022-04-24 08:29:14 +00:00
import './staticLoader'
2022-04-24 08:50:45 +00:00
import { httpService } from '@/services'
2022-04-15 14:24:30 +00:00
import App from './app.vue'
import { createApp } from 'vue'
2022-04-24 08:50:45 +00:00
httpService.init()
2022-04-15 14:24:30 +00:00
createApp(App).mount('#app')