I was setting up a new project with Meteor and Vue using the official command:
meteor create myApp --vue
After that, I added Android as a platform:
meteor add-platform android
However, when I tried to run the app on Android:
meteor run android
on loading the app on android it gives the following error.
TypeError: Cannot read properties of null (reading 'subTree')
Has anyone encountered this issue before? Any idea how to fix it? It seems like something in the Vue-Meteor integration is breaking when running with cordova. It works with react but i’d really like it to work with vue.