beehive/app/components/TitleDescription.vue
2025-10-23 17:23:26 +08:00

28 lines
925 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- components/TitleSection.vue -->
<template>
<view class="flex flex-col items-center">
<view class="text-sm mt-4 lg:mt-20 text-primary font-bold">
{{ subtitle }}
</view>
<view class="text-4xl my-6 font-bold">
{{ title }}
</view>
<view class="text-xl lg:mx-32 mx-6 mb-6 text-muted">
利用物联网人工智能等技术集成蜂箱数据采集硬件设备及数据管理系统协助养蜂人员远程实时获取监控蜂箱内部环境减少频繁开箱操作同时提供
预警功能辅助养殖决策推动从传统经验养蜂到智能化养蜂转型提高管理效率根据不同需求分为基础版标准版高级版三种产品
</view>
</view>
</template>
<script setup>
defineProps({
title: {
type: String,
default: '默认标题'
},
subtitle: {
type: String,
default: '默认副标题'
}
})
</script>