TitleWithLine.vue 367 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="title"><slot></slot></div>
  3. </template>
  4. <style scoped>
  5. .title {
  6. font-weight: bold;
  7. font-size: 16px;
  8. position: relative;
  9. margin-left: 10px;
  10. &::before {
  11. content: '';
  12. width: 4px;
  13. position: absolute;
  14. left: -8px;
  15. height: 20px;
  16. top: 2px;
  17. background-color: #1890ff;
  18. }
  19. }
  20. </style>