Merge branch 'feature/bpm' of https://gitee.com/yudaocode/yudao-ui-admin-vue3 into feature/bpm

This commit is contained in:
jason 2024-04-14 10:29:06 +08:00
commit 12548b0af2
2 changed files with 4 additions and 3 deletions

View File

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

View File

@ -1,3 +1,4 @@
// TODO @jason这个放到 store/modules/bpm/simpleWorkflow.ts
import { store } from '../index'
import { defineStore } from 'pinia'