mirror of
https://github.com/koel/koel
synced 2024-11-15 08:57:16 +00:00
9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
import { createApp } from 'vue'
|
|
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
|
|
import { clickaway } from '@/directives'
|
|
import App from './App.vue'
|
|
|
|
createApp(App)
|
|
.component('icon', FontAwesomeIcon)
|
|
.directive('koel-clickaway', clickaway)
|
|
.mount('#app')
|