Concept Flow - Script setup syntax
Start: <script setup> block
Declare reactive refs and variables
Define functions and imports
Template uses declared refs and functions
Vue compiles and binds reactive data
Component renders with reactive updates
The <script setup> block declares reactive variables and functions directly, which Vue compiles and binds to the template for reactive rendering.