mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-25 17:22:55 +00:00
8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
import type { App } from 'vue'
|
|
import { ClickOutside as vClickOutside } from 'element-plus'
|
|
export default {
|
|
install: (app: App) => {
|
|
app.directive('click-outside', vClickOutside)
|
|
}
|
|
}
|