PageTitle.vue 552 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div class="title-wrapper">
  3. <div class="title">
  4. {{title}}
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. props: {
  11. title: {
  12. type: String,
  13. default:''
  14. }
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .title-wrapper {
  20. width: 100%;
  21. border-top: 2px solid #D82020;
  22. .title {
  23. width: 156px;
  24. height: 50px;
  25. line-height: 50px;
  26. text-align: center;
  27. background: #D82020;
  28. font-size: 18px;
  29. font-family: PingFang SC;
  30. font-weight: bold;
  31. color: #FFFFFF;
  32. }
  33. }
  34. </style>