tableTitle.vue 584 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div class="tableTitle">
  3. <span class="tableFloatLine"></span>
  4. {{ name }}
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. props: {
  10. name: {
  11. type: String,
  12. required: true,
  13. },
  14. },
  15. data() {
  16. return {
  17. someData: '',
  18. };
  19. },
  20. };
  21. </script>
  22. <style scoped lang="less">
  23. .tableTitle {
  24. color: #333333;
  25. position: relative;
  26. padding-bottom: 20px;
  27. margin-top: 20px;
  28. .tableFloatLine {
  29. width: 3px;
  30. height: 16px;
  31. background: #5570F1;
  32. display: block;
  33. position: absolute;
  34. left: -20px;
  35. top: 1px;
  36. }
  37. }
  38. </style>