Files
mayfly-go/mayfly_go_web/src/directive/index.ts

12 lines
278 B
TypeScript
Raw Normal View History

import type { App } from 'vue';
2023-03-15 11:41:03 +08:00
import { authDirective } from './auth';
import { wavesDirective } from './waves';
// 导出指令方法
export function directive(app: App) {
// 用户权限指令
authDirective(app);
// 按钮波浪指令
wavesDirective(app);
}