koel/resources/assets/js/app.ts

21 lines
584 B
TypeScript
Raw Normal View History

2022-04-24 08:29:14 +00:00
import './staticLoader'
2022-04-15 17:00:08 +00:00
import { createApp } from 'vue'
2022-04-25 13:07:38 +00:00
import App from './App.vue'
2022-04-15 14:24:30 +00:00
import { clickaway, droppable, focus } from '@/directives'
2022-07-15 07:23:55 +00:00
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
2022-04-15 14:24:30 +00:00
2022-05-14 23:37:16 +00:00
createApp(App)
2022-07-15 07:23:55 +00:00
.component('icon', FontAwesomeIcon)
2022-05-14 23:37:16 +00:00
.directive('koel-focus', focus)
.directive('koel-clickaway', clickaway)
.directive('koel-droppable', droppable)
/**
* For Ancelot, the ancient cross of war
* for the holy town of Gods
* Gloria, gloria perpetua
* in this dawn of victory
*/
.mount('#app')
2022-04-15 14:24:30 +00:00
2022-07-16 15:44:45 +00:00
navigator.serviceWorker.register('./sw.js')