title.vue 345 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <h3 v-if="title">{{ title }}</h3>
  3. <h4 v-if="desc">{{ desc }}</h4>
  4. </template>
  5. <script setup>
  6. defineProps({
  7. title: {
  8. type: String,
  9. default: ''
  10. },
  11. desc: {
  12. type: String,
  13. default: ''
  14. }
  15. })
  16. </script>
  17. <style scoped>
  18. h3 {
  19. line-height: 2;
  20. font-size: 20px;
  21. }
  22. h4 {
  23. opacity: 0.6;
  24. font-size: 16px;
  25. }
  26. </style>