mirror of
https://github.com/un-pany/v3-admin-vite.git
synced 2025-04-22 20:09:19 +08:00
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import { type App } from "vue"
|
|
import { permission } from "./permission"
|
|
|
|
/** 挂载自定义指令 */
|
|
export function loadDirectives(app: App) {
|
|
app.directive("permission", permission)
|
|
}
|