PcTitle.vue 523 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <section >
  3. <h1 :style="{ 'marginTop':marginTop+ 'px'}">
  4. {{title}}
  5. </h1>
  6. <span class="decoration"></span>
  7. </section>
  8. </template>
  9. <script>
  10. export default {
  11. props: {
  12. title: String,
  13. marginTop: {
  14. type: Number,
  15. },
  16. },
  17. };
  18. </script>
  19. <style lang="scss" scoped>
  20. section{
  21. text-align: center;
  22. }
  23. h1{
  24. font-size: 35px;
  25. font-weight: bold;
  26. }
  27. .decoration{
  28. margin: 14px 0 20px 0;
  29. display: inline-block;
  30. width: 100px;
  31. height: 4px;
  32. background-color: #E90000;
  33. }
  34. </style>