index.vue 602 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div class="container">
  3. <div class="titleText">
  4. <span class="text"> {{ titleText }}</span>
  5. </div>
  6. <div class="slot">
  7. <slot></slot>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. props: {
  14. titleText: {
  15. type: String,
  16. default: "默认文本",
  17. },
  18. },
  19. };
  20. </script>
  21. <style lang="scss" scoped>
  22. .text {
  23. color: #1b81cb;
  24. font-size: 16px;
  25. }
  26. .titleText {
  27. width: 95%;
  28. margin: 0 auto;
  29. padding-bottom: 10px;
  30. padding-left: 5px;
  31. border-bottom: #005c91 solid 1px;
  32. }
  33. .slot {
  34. margin: 10px 0;
  35. }
  36. .container {
  37. margin: 10px 0;
  38. }
  39. </style>