tableTitle.vue 584 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. .tableFloatLine {
  28. width: 3px;
  29. height:16px;
  30. background:#5570F1;
  31. display: block;
  32. position: absolute;
  33. left:-20px;
  34. top:1px;
  35. }
  36. }
  37. </style>