Multimedia-Vue
// https://github.com/vuejs/vue/blob/dev/src/core/vdom/vnode.js // https://reactnative.cn/docs/0.46/height-and-width.html // https://reactnative.cn/docs/0.46/colors.html // https://reactnative.cn/docs/0.46/text.html // https://reactnative.cn/docs/0.46/image.html // https://github.com/react-native-community/react-native-video // https://github.com/airbnb/react-native-maps // https://reactnative.cn/docs/0.46/webview.html // https://reactnative.cn/docs/0.46/asyncstorage.html // https://reactnative.cn/docs/0.46/cameraroll.html // https://reactnative.cn/docs/0.46/geolocation.html // https://reactnative.cn/docs/0.46/imageeditor.html // https://reactnative.cn/docs/0.46/netinfo.html // https://reactnative.cn/docs/0.46/vibration.html // https://github.com/realm/realm-js // https://github.com/itinance/react-native-fs // VNode结构部分参考Vue设计: { tag:””, data:{}, children:[{}], text:”文本等节点专用” } // 属性(data)部分仍参考ReactNative,weex的组件较少,文档也较少,可参考性不强
1 |
|