问题标签 [vue-native]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
react-native - Vue Native - 调试
最近我从 Ionic 框架切换到 vue-native(vue.js 围绕 react-native 包装),一切似乎都很酷,开发快速简单,但我在调试这些应用程序时遇到了一些实际问题。使用 Ionic Framework (Cordova),我能够在 Web 浏览器中打开一个应用程序,并且可以从 Chrome 控制台轻松管理 Vuex 状态(例如)。在反应原生世界中似乎并不那么容易和微不足道。在vue-native中是否可以有类似的调试经验?当我的应用程序开始增长并变得复杂时,真的很难以其他方式处理它。任何帮助表示赞赏。
react-native - App.vue is not working in Vue-Native application
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??
react-native - I can't install expo-cli
When I install expo-cli
with npm i -g expo-cli
I get thousands of npm WARN tar invalid entry
, and then I get this error :
npm ERR! path C:\Users\mrkinix\AppData\Roaming\npm\node_modules\expo-cli\node_modules@expo\bunyan\bin\bunyan npm ERR! code ENOENT npm ERR! errno -4058 npm ERR! syscall chmod npm ERR! enoent ENOENT: no such file or directory, chmod 'C:\Users\mrkinix\AppData\Roaming\npm\node_modules\expo-cli\node_modules@expo\bunyan\bin\bunyan' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoent
npm ERR! A complete log of this run can be found in: npm ERR!
C:\Users\mrkinix\AppData\Roaming\npm-cache_logs\2018-12-15T14_11_31_669Z-debug.log35648 error path C:\Users\mrkinix\AppData\Roaming\npm\node_modules\expo-cli\node_modules@expo\dev-tools\node_modules\lodash 35649 error code ENOENT 35650 error errno -4058 35651 error syscall rename 35652 error enoent ENOENT: no such file or directory, rename 'C:\Users\mrkinix\AppData\Roaming\npm\node_modules\expo-cli\node_modules@expo\dev-tools\node_modules\lodash' -> 'C:\Users\mrkinix\AppData\Roaming\npm\node_modules\expo-cli\node_modules@expo\dev-tools\node_modules.lodash.DELETE' 35653 error enoent This is related to npm not being able to find a file. 35654 verbose exit [ -4058, true ]
javascript - Vue native 总是执行 App.js 而不是 .vue
我进行了 vue-native 安装的第一个过程,我正在遵循“入门”Hello world 教程(https://vue-native.io/getting-started.html),但App.vue
从未执行过,只有App.js
. _ 如果我删除App.js
我得到一个错误:
“无法从“node_modules\expo\AppEntry.js”解析“../../App””
如何解决此问题以使其正常工作并按照教程解决任何问题?
文件夹结构:
应用程序.js
应用程序.vue
谢谢
react-native - 使用 NativeBase 在 vue-native 上刷新列表
我似乎无法弄清楚如何通过使用 NativeBase 在 vue-native 上拉下列表来刷新列表。我知道在 react-native 上是可能的,但我找不到任何关于如何使它与 vue-native 一起工作的信息。有谁知道如何做到这一点?
vuejs2 - vue-native 和 nativescript-vue 哪个更好?
我想用 VueJS 启动一个移动应用程序。谁能建议我可以在vue-native或nativescript-vue之间选择哪个框架?
android - 如何在 vue native 中构建一个 helloworld 应用程序?
我已经使用以下命令设置了一个空白应用程序并在 android 模拟器中成功运行
在http://localhost:19002/中,我单击“在 Android 设备/模拟器上运行”,博览会显示空白应用程序“打开 App.js 以开始使用您的应用程序!”
我看到有一个 helloworld 应用程序 https://vue-native.io/getting-started.html
但是上面的链接没有提到 app.js,所以我不明白如何开始构建一个 helloworld 应用程序。
任何人都知道我错过了什么?
vue.js - 如何修复在 vue native 中无法访问样式标签?
我试图在 vue native 中显示蓝色文本,但是,它只显示没有颜色的文本。我正在使用具有样式信息的样式标签。
我尝试使用内联样式并且它有效,因此,我认为问题在于访问样式标签。
这是我得到的链接: https ://i.imgur.com/6gYNdWZ.png
预期的结果应该是相同的文本,但是颜色是蓝色的并且必须在屏幕中间。
react-native - 在 Vue Native 中添加静态图片资源
我知道为了在本机反应中添加静态图像资源,图像必须是静态已知的。这是通过以下方式完成的:
在 vue native 中,就像在 react native 中一样,使用
将不起作用,因为静态图像不是静态已知的。如何使图像在 Vue Native 中静态已知?