12345678910111213141516171819202122232425262728 |
- <template>
- <h3 v-if="title">{{ title }}</h3>
- <h4 v-if="desc">{{ desc }}</h4>
- </template>
- <script setup>
- defineProps({
- title: {
- type: String,
- default: ''
- },
- desc: {
- type: String,
- default: ''
- }
- })
- </script>
- <style scoped>
- h3 {
- line-height: 2;
- font-size: 20px;
- }
- h4 {
- opacity: 0.6;
- font-size: 16px;
- }
- </style>
|