nav-bar.ts 490 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // components/nav-bar/nav-bar.ts
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. /// 导航栏标题
  8. title: {
  9. type: String,
  10. value: ''
  11. },
  12. left: {
  13. type: Boolean,
  14. value: true
  15. },
  16. bgColor: {
  17. type: String,
  18. value: '#fff'
  19. },
  20. titleColor: {
  21. type: String,
  22. value: '#333'
  23. }
  24. },
  25. /**
  26. * 组件的初始数据
  27. */
  28. data: {
  29. },
  30. /**
  31. * 组件的方法列表
  32. */
  33. methods: {
  34. }
  35. })