Framework
Vue.js
A progressive UI framework: templates close to HTML, reactivity, and an easy on-ramp.
Vue’s particularity is progressiveness: a sprinkle on one page, or a full SPA with the router and Pinia. Templates stay readable to anyone who knows HTML.
The reactivity system tracks dependencies; you describe state, the DOM follows. Composition API (Vue 3) scales better than a pile of options — same lesson as Symfony services vs fat controllers.
It is a strong fit when a PHP/Twig site grows islands of interactivity. It is heavier than it needs to be for a dropdown.