OfficialAccount

公众号关注组件。当用户扫小程序码打开小程序时,开发者可在小程序内配置公众号关注组件,方便用户快捷关注公众号,可嵌套在原生组件内。

组件 支持度

微信小程序

具体用法请看小程序官方文档

微信小程序 OfficialAccount

  1. import Taro, { Component } from '@tarojs/taro'
  2. // 引入 OfficialAccount 组件
  3. import { OfficialAccount } from '@tarojs/components'
  4. class App extends Component {
  5. render () {
  6. return (
  7. <OfficialAccount
  8. onLoad={() => console.log('official-account onLoad')}
  9. onError={() => console.log('official-account onError')}
  10. />
  11. )
  12. }
  13. }