mirror of
https://github.com/SARL-PACIFIC-ERP/odoo-sh-test.git
synced 2025-06-25 17:42:22 +00:00
10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
/** @odoo-module */
|
|
|
|
import { useRef, onMounted } from "@odoo/owl";
|
|
|
|
export function useAutofocus(name) {
|
|
const ref = useRef(name);
|
|
onMounted(() => {
|
|
ref.el.focus();
|
|
});
|
|
} |