Guide
- Installation
- Introduction
- Getting Started
- Declarative Rendering
- Basic Components
- Conditionals and Loops
- Composing with components
- Handling user input
- Animations
- Slots
- Component As Prop
- Device APIs
- React Native
- Ready for more?
- Vue Native Router
- Testing
- Community Libraries
- How does it work?
- How to contribute
- FAQ
⚠️ Vue Native has been deprecated and is no longer maintained.
How does it work?
This is fork of react-vue
Vue-native-core is designed to connect React and Vue, which help you run Vue in React.
There are three uses.
Use the reactivity system of Vue to observer React component
Use the vue-native-scripts to run Vue component in React Native
Reactivity System
Thanks to Vue’s clear hierarchical design, we can easily pull out the reactivity system (9 KB gzipped), and drive React component rendering.
npm install --save vue-native-core |
import React, { Component } from "react"; |
Vue Native Scripts
Introduce vue-native-scripts, which compile and transform the vue component into a react component.
Caught a mistake or want to contribute to the documentation?
Edit this page on GitHub!