Concept Flow - Template refs for DOM access
Template renders
Ref attribute set on element
Vue creates ref object
ref.value points to DOM element
Access DOM via ref.value in script
Manipulate or read DOM element
Vue renders the template, sets the ref attribute, creates a ref object, and links ref.value to the DOM element for script access.