CCDTitleCell.vue 625 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="wholeComponent" style="align-content: center">
  3. <div style="height: 50px"></div>
  4. <div style="text-align: center">
  5. <img src="../assets/roundicon.png" style="width: 36px; height: 36px; display: inline; vertical-align: middle">
  6. <p style="font-size: x-large; font-weight: bold; display: inline; vertical-align: middle; margin-left: 5px; color: #fff5be">{{ title }}</p>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: "CCDTitleCell",
  13. props: {
  14. "title" : String
  15. }
  16. }
  17. </script>
  18. <style scoped>
  19. .wholeComponent {
  20. display: table-cell;
  21. width: 100rem;
  22. }
  23. </style>