add.vue 464 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="content-box">
  3. <uni-nav-bar fixed="true" statusBar="true" left-icon="back"
  4. @clickLeft="back">
  5. <block slot="right">
  6. 5555
  7. </block>
  8. </uni-nav-bar>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. }
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. .content-box {
  23. height: 100vh;
  24. overflow: hidden;
  25. display: flex;
  26. flex-direction: column;
  27. }
  28. </style>