beehive/app/components/TitleSection.vue
2025-10-23 12:01:17 +08:00

24 lines
455 B
Vue

<!-- components/TitleSection.vue -->
<template>
<view class="flex flex-col items-center">
<view class="text-sm mt-4 lg:mt-32 text-primary font-bold">
{{ subtitle }}
</view>
<view class="text-4xl my-6 font-bold">
{{ title }}
</view>
</view>
</template>
<script setup>
defineProps({
title: {
type: String,
default: '默认标题'
},
subtitle: {
type: String,
default: '默认副标题'
}
})
</script>