LoginTop.vue 508 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="NavTop">
  3. <div>
  4. </div>
  5. <div>{{Text}}</div>
  6. <div>
  7. <slot name="right"></slot>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. props:['Text']
  14. }
  15. </script>
  16. <style scoped lang="less">
  17. .NavTop{
  18. height: 12.889vw;
  19. background-color: white;
  20. display: flex;
  21. div{
  22. flex: 1;
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. font-size: 4.444vw;
  27. }
  28. }
  29. </style>