2023-03-11 15:05:46 +08:00

7 lines
163 B
TypeScript

import type { App } from 'vue'
import action from './permission/action'
export function bootstrapDirectives(app: App): void {
app.directive('action', action)
}