Concept Flow - Functional components
Define functional component as a function
Receive props as input
Return render output (JSX or template)
Vue renders output without internal state
Component used in parent template
Render output appears in DOM
Functional components are simple Vue components defined as functions that take props and return UI without internal state.