mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import './staticLoader'
|
|
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import { clickaway } from '@/directives'
|
|
|
|
createApp(App)
|
|
.directive('koel-clickaway', clickaway)
|
|
.mount('#app')
|