mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
import { createApp } from 'vue'
|
|
import { clickaway } from '@/directives'
|
|
import App from './App.vue'
|
|
|
|
createApp(App)
|
|
.directive('koel-clickaway', clickaway)
|
|
.mount('#app')
|