koel/resources/assets/js/app.ts
2022-05-15 01:37:16 +02:00

18 lines
536 B
TypeScript

import './staticLoader'
import { createApp } from 'vue'
import App from './App.vue'
import { clickaway, droppable, focus } from '@/directives'
createApp(App)
.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')
navigator.serviceWorker.register('./sw.js').then(() => console.log('Service Worker Registered'))