mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
7 lines
174 B
TypeScript
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')
|