mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
12 lines
276 B
TypeScript
12 lines
276 B
TypeScript
import './staticLoader'
|
|
import { createApp } from 'vue'
|
|
import { httpService } from '@/services'
|
|
import App from './App.vue'
|
|
import { clickaway } from '@/directives'
|
|
|
|
httpService.init()
|
|
|
|
const app = createApp(App)
|
|
app.directive('koel-clickaway', clickaway)
|
|
|
|
app.mount('#app')
|