mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
26 lines
897 B
TypeScript
26 lines
897 B
TypeScript
import { createApp } from 'vue'
|
|
import { clickaway, focus, hideBrokenIcon, overflowFade, tooltip } from '@/directives'
|
|
import { FontAwesomeIcon, FontAwesomeLayers } from '@fortawesome/vue-fontawesome'
|
|
import { RouterKey } from '@/symbols'
|
|
import { routes } from '@/config'
|
|
import Router from '@/router'
|
|
import App from './App.vue'
|
|
|
|
createApp(App)
|
|
.provide(RouterKey, new Router(routes))
|
|
.component('Icon', FontAwesomeIcon)
|
|
.component('IconLayers', FontAwesomeLayers)
|
|
.directive('koel-focus', focus)
|
|
.directive('koel-clickaway', clickaway)
|
|
.directive('koel-tooltip', tooltip)
|
|
.directive('koel-hide-broken-icon', hideBrokenIcon)
|
|
.directive('koel-overflow-fade', overflowFade)
|
|
/**
|
|
* For Ancelot, the ancient cross of war
|
|
* for the holy town of Gods
|
|
* Gloria, gloria perpetua
|
|
* in this dawn of victory
|
|
*/
|
|
.mount('#app')
|
|
|
|
navigator.serviceWorker?.register('./sw.js')
|