Сбой установки Vue Native с помощью интерфейса командной строки Vue Native
Созданный helloworld
проект ссылается на https://vue-native.io/docs/installation.html
Но имеет ошибку, как и мое первое приложение не запускается.
Unable to resolve "../../App" from "node_modules/expo/AppEntry.js"
Моя среда
$ node -v
v9.9.0
$ npm -v
6.4.1
$ npm list --depth=0
empty-project-template@ /Users/kamo/repo/github.com/kamontia/vue-
native-app/helloworld
├── babel-preset-expo@5.0.0
├── expo@31.0.4
├── react@16.5.0
├── react-native@0.57.1
├── vue-native-core@0.0.8
├── vue-native-helper@0.0.9
└── vue-native-scripts@0.0.14
npm ERR! peer dep missing: react@16.0.0-alpha.6, required by react-
native-reanimated@1.0.0-alpha.10
npm ERR! peer dep missing: react-native@^0.44.1, required by react-
native-reanimated@1.0.0-alpha.10
На симуляторе,
Unable to resolve module ../../App from
xxx/node_modules/expo/AppEntery.js: The ./../App could not be found
from ...
Indeed, none of these files exist:
* ... App(.native||.ios.js|...
Что я должен делать?
Я также попытался создать проект с React Native, обратитесь к https://vue-native.io/docs/installation.html и успешно запустил приложение.
0 ответов
Была такая же проблема. Ниже работает для меня
В app.json
Добавлять
"sourceExts": [ "js", "json", "ts", "tsx", "jsx", "vue"]
Inside
"packagerOpts"
"packagerOpts":
{ "sourceExts": [ "js", "json", "ts", "tsx", "jsx", "vue"],
"config": "metro.config.js" }