Taro 以 微信小程序组件库 为标准,结合 jsx 语法规范,定制了一套自己的组件库规范。
    基于以上原则,在小程序端,我们可以使用所有的小程序原生组件,而在其他端,我们提供了对应的组件库实现

    • H5 端,@tarojs/components,同时也是需要引入的默认标准组件库
    • RN 端为,@tarojs/components-rn

    在使用时,我们需要
    先从 Taro 标准组件库 @tarojs/components 引用组件,
    再进行使用,

    例如使用 <View /><Text />组件

    1. import Taro, { Component } from '@tarojs/taro'
    2. import { View, Text } from '@tarojs/components'
    3. export default class C extends Component {
    4. render () {
    5. return (
    6. <View className='c'>
    7. <Text>c component</Text>
    8. </View>
    9. )
    10. }
    11. }