nav-bar.ts 363 B

12345678910111213141516171819202122232425262728293031
  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. },
  17. /**
  18. * 组件的初始数据
  19. */
  20. data: {
  21. },
  22. /**
  23. * 组件的方法列表
  24. */
  25. methods: {
  26. }
  27. })