What are Functional Components in Vue 3 and when should they be used?
Updated May 4, 2026
Short answer
Functional components are stateless components that are rendered as plain functions rather than objects.
Deep explanation
In Vue 3, the performance difference between functional and stateful components has been significantly reduced, making functional components less necessary than in Vue 2. They are essentially functions that receive props and context and return VNodes. They have no this instance, no lifecycle hooks, and no internal state.
Unlock with a Pro subscription to view this section.
View pricingReal-world example
No real-world example available yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProCommon mistakes
No common mistakes listed yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProFollow-up questions
No follow-up questions available yet.
Unlock with a Pro subscription to view this section.
Upgrade to Pro