yes, there are still applications developed with AngularJS even though its LTS version was discontinued at the end of 2021, in fact from the beginning of the year 2022 the independent team in XLTS.dev will maintain a fork of the latest version of AngularJS. by default the only way to migrate your web app is using some libraries available by the Angular team,
Why Vue?
Vue offer a natural way to migrate your ng components to Vue components because there are some features that will speed up the whole migration process of your app, for example templating syntax and reactive model.
This allows migration to be less complex for the team and allows them to still focus on new features and migration at the same time.
we declare this component in constant in case we need to run unit tests
constMyVueComponent=Vue.component('MyVueComponent',{computed:{text:{type:String}},template:`<div>{{ text }}</div>`});
Finally inside HTML template ng-non-bindable does the trick, this directive tells AngularJS not to compile or bind the contents of the current DOM element, in our case a Vue instance
<mainng-controller="MainCtrl as vm"><divid="vue-app"ng-non-bindable><MyVueComponent:text="someText"/></div>
</main>
now you can migrate and deliver new features at the same time with Vue.
you can check a full example using Vue and incorporate Vuex.