Cordova / PhoneGap applications do not work directly on wearable devices / watches. Cordova / PhoneGap is basically a javascript API that can run on WebKit / WebView on all mobile OS. But Android Watch and Apple Watch do not support WebKit, so applications developed with Cordova do not work directly on Watch devices. But if you want to extend some features of an existing Cordova application to a downloadable application, you need to create an extension application in your native language, and the extension must be able to communicate with the paired application on your mobile device. The extension on Watch will only have a user interface, and business logic, etc. Works on the Cordova app on a mobile device. It is possible to establish a connection between these applications, which will control the display on watch devices.
I'm not sure about the other frameworks you mentioned above about how much they support wearable devices.
source share