在 Taro 中,你可以为页面及组件设置一些属性来达到一些特殊的目的,例如 config
设置配置等等,在前面章节你已经学会如何在类中进行相关设置,同样的,使用 Hooks 时你也可以进行相关设置来达到和使用类一样的效果。
不同于使用类的写法,使用 Hooks 时,你需要将 config
或 options
等配置直接挂载在 Hooks 函数上,即可以达到想要的效果,例如
为页面设置 config
export default function Index () {
return <View></View>
}
Index.config = {
navigationBarTitleText: '首页'
}
为组件设置 options
export default function Com () {
return <View></View>
}
Com.options = {
addGlobalClass: true
}