export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.directive('autofocus', { mounted(el, binding) { el.focus(); } }) })