card.vue 427 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div>
  3. <div class="card_title">
  4. {{ title }}
  5. </div>
  6. <slot></slot>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. props: {
  12. title: String,
  13. },
  14. data() {
  15. return {};
  16. },
  17. };
  18. </script>
  19. <style lang="less" scoped>
  20. .card_title {
  21. padding-left: 10px;
  22. height: 20px;
  23. line-height: 20px;
  24. margin: 10px 0px;
  25. font-size: 16px;
  26. font-weight: bold;
  27. border-left: 8px solid #98d4f3;
  28. }
  29. </style>