feat: add directive[v-action]

This commit is contained in:
JaguarJack
2023-03-11 15:05:46 +08:00
parent a6a671def5
commit 192e2f512f
3 changed files with 52 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
import type { App } from 'vue'
import action from './permission/action'
export function bootstrapDirectives(app: App): void {
app.directive('action', action)
}