mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
10 lines
307 B
TypeScript
10 lines
307 B
TypeScript
import { createApp } from 'vue'
|
|
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
|
|
import { clickaway } from '@/directives'
|
|
import '@/../css/remote.pcss'
|
|
import App from './App.vue'
|
|
|
|
createApp(App)
|
|
.component('Icon', FontAwesomeIcon)
|
|
.directive('koel-clickaway', clickaway)
|
|
.mount('#app')
|