react-vue-native-scripts v0.0.5
react-vue-native-scripts
Compile Vue component to React Native.
Install
npm install --save react-vue react-vue-helper
npm install --save-dev react-vue-native-scriptsUsage
Before you should get a React Native Application
Add scripts commands in your package.json.
...
"scripts": {
"compiler": "react-vue-native-scripts compiler",
},
...cli
npm run compilerTips
For react-native packager can not bundle .vue file, this scripts just compiled the file with .vue suffixed and generated a same name file with .js suffixed.
In the react native application, you can simply import your Vue components as following
import VueComponent from './VueComponent'There should be a file named VueComponent.vue in the corresponding folder, and the compiler would be generate a file named VueComponent.js in the same directory.
In react-native packager, import VueComponent from './VueComponent' equal to import VueComponent from './VueComponent.js'.
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago