page-navbar.vue 466 B

12345678910111213141516171819202122232425262728293031
  1. <template name="page-navbar">
  2. <view style="width:100%;background-color: #000000;color:#fff;">
  3. <view >移动工程</view>
  4. <!-- <uni-nav-bar :title="title"></uni-nav-bar> -->
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. name:"page-navbar",
  10. props: {
  11. title: {
  12. type: String,
  13. default: ""
  14. }
  15. },
  16. data() {
  17. return {
  18. };
  19. }
  20. }
  21. </script>
  22. <style>
  23. .status_bar {
  24. height: var(--status-bar-height);
  25. width: 100%;
  26. }
  27. </style>