学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
405 B

  1. <template>
  2. <view class="topNavbar">
  3. <u-navbar
  4. :leftText="title"
  5. :autoBack="true"
  6. :bgColor="bgColor"
  7. :leftIconColor="leftIconColor"
  8. :fixed="false"
  9. >
  10. </u-navbar>
  11. <view class="pad">
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. props: ['title'],
  18. data() {
  19. return {
  20. bgColor: 'transparent',
  21. leftIconColor: '#fff'
  22. }
  23. }
  24. }
  25. </script>
  26. <style>
  27. </style>