7 lines
163 B
TypeScript
Raw Permalink Normal View History

2023-03-11 15:05:46 +08:00
import type { App } from 'vue'
import action from './permission/action'
export function bootstrapDirectives(app: App): void {
app.directive('action', action)
}