1

i initialize project with vue-native init projectname after initializing there is "app.js" and "app.vue" file in the project and every time i run my application it only run the app.js file while the vue file is ignored.. any suggestions??

1 Answers1

0

If you use expo, you must find file: your-app/node-modules/expo(not @expo but expo)/AppEntry.js and change import App from '../../App'; to import App from '../../App.vue';

iminiki
  • 2,549
  • 12
  • 35
  • 45