当前位置:   article > 正文

ArkUI:组件化之常用装饰器了解_arkui一共有哪些装修器

arkui一共有哪些装修器

@Component

被@Component修饰,表示该结构体struct是一个自定义组件

特点

        可组合

        可重用

        有生命周期

        数据驱动更新

  1. @Component
  2. struct ComponentA {
  3. build() {
  4. Row() {
  5. Column() {
  6. // 重用ComponentB
  7. ComponentB()
  8. Text('first column')
  9. .fontSize(20)
  10. }
  11. Column() {
  12. // 重用ComponentB
  13. ComponentB()
  14. // 和 ComponentC 组合
  15. ComponentC()
  16. Text('second column')
  17. .fontSize(20)
  18. }
  19. }
  20. }
  21. // 生命周期函数
  22. private aboutToAppear() {
  23. console.log('ParentComponent: Just created, about to become rendered first
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号