mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-02 04:36:35 +08:00
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import type { App } from 'vue';
|
|
import { authDirective } from './auth';
|
|
import { wavesDirective } from './waves';
|
|
|
|
// 导出指令方法
|
|
export function directive(app: App) {
|
|
// 用户权限指令
|
|
authDirective(app);
|
|
// 按钮波浪指令
|
|
wavesDirective(app);
|
|
}
|