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

11 lines
307 B
TypeScript
Raw Normal View History

2022-04-15 14:24:30 +00:00
import { createApp } from 'vue'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
2022-04-25 13:07:38 +00:00
import { clickaway } from '@/directives'
2024-04-04 20:13:35 +00:00
import '@/../css/remote.pcss'
2022-07-04 15:57:08 +00:00
import App from './App.vue'
2022-04-15 14:24:30 +00:00
2022-05-14 23:37:16 +00:00
createApp(App)
2023-11-10 13:16:06 +00:00
.component('Icon', FontAwesomeIcon)
2022-05-14 23:37:16 +00:00
.directive('koel-clickaway', clickaway)
.mount('#app')