ipms-sjy-ui/src/directives/index.ts

26 lines
582 B
TypeScript
Raw Normal View History

import type { App } from 'vue'
import { hasRole } from './permission/hasRole'
import { hasPermi } from './permission/hasPermi'
/**
* v-xxx
* @methods hasRole 用法: v-hasRole
* @methods hasPermi 用法: v-hasPermi
*/
export const setupAuth = (app: App<Element>) => {
hasRole(app)
hasPermi(app)
}
// TODO @jason拼写是不是 Focus 聚焦?
/**
* v-mountedFoucs
*/
export const setupMountedFoucs = (app: App<Element>) => {
app.directive('mountedFoucs', {
mounted(el) {
el.focus()
}
})
}