© 2026 Hedgehog Software, LLC
const nameInput = useTemplateRef('nameInput') const input = nameInput.value?.$el.querySelector('input') // return the correct input input.focus() // doesn't work
const nameInput = useTemplateRef('nameInput') const input = nameInput.value?.$refs.input as any // return undefined input.focus() // doesn't work (since it's undefined)