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')