瑜璟缘官网
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
505 B

  1. <template>
  2. <div>
  3. <div class="textTitle">
  4. <p>{{text}}</p>
  5. <div class="w_line"></div>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. props:{
  12. text:String
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. .textTitle {
  18. margin-top: 50px;
  19. overflow: hidden;
  20. p {
  21. font-size: 26px;
  22. font-weight: bold;
  23. }
  24. .w_line {
  25. width: 60px;
  26. height: 2px;
  27. background-color: #000;
  28. margin: 20px 0;
  29. }
  30. }
  31. </style>