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

13 lines
276 B
TypeScript
Raw Normal View History

2022-04-24 08:29:14 +00:00
import './staticLoader'
2022-04-15 14:24:30 +00:00
import { createApp } from 'vue'
2022-04-25 13:07:38 +00:00
import { httpService } from '@/services'
import App from './App.vue'
import { clickaway } from '@/directives'
2022-04-15 14:24:30 +00:00
2022-04-24 08:50:45 +00:00
httpService.init()
2022-04-25 13:07:38 +00:00
const app = createApp(App)
app.directive('koel-clickaway', clickaway)
app.mount('#app')