Files
orion-visor/orion-visor-ui/src/utils/dom.ts

10 lines
179 B
TypeScript
Raw Normal View History

2024-02-20 00:06:10 +08:00
import { nextTick } from 'vue';
// 设置 ref 自动聚焦
export const setAutoFocus = (el: HTMLElement) => {
// 自动聚焦
nextTick(() => {
el && el.focus();
});
};