在 Taro 中,你可以为页面及组件设置一些属性来达到一些特殊的目的,例如 config 设置配置等等,在前面章节你已经学会如何在类中进行相关设置,同样的,使用 Hooks 时你也可以进行相关设置来达到和使用类一样的效果。
    不同于使用类的写法,使用 Hooks 时,你需要将 configoptions 等配置直接挂载在 Hooks 函数上,即可以达到想要的效果,例如
    为页面设置 config

    1. export default function Index () {
    2. return <View></View>
    3. }
    4. Index.config = {
    5. navigationBarTitleText: '首页'
    6. }

    为组件设置 options

    1. export default function Com () {
    2. return <View></View>
    3. }
    4. Com.options = {
    5. addGlobalClass: true
    6. }