Problem Statement
What are filters in Vue and how are they used?
Explanation
In Vue 2, filters format text in templates (e.g., capitalization, dates). In Vue 3 they were removed from core—use computed properties or methods instead. The idea remains: keep formatting logic declarative and reusable.