普兆健康管家前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

49 lines
739 B

<template>
<view class="header">
<view class="title">
<slot name="title">
{{ title }}
</slot>
</view>
<view class="desc">
{{ desc }}
</view>
</view>
</template>
<script>
export default {
props: {
title: {
type: String,
default: '',
},
desc: {
type: String,
default: '',
},
},
}
</script>
<style scoped lang="scss">
.header {
padding: 0 32rpx;
}
.title {
font-size: 48rpx;
font-family: PingFang SC;
font-weight: 600;
line-height: 1.4;
color: #252545;
}
.desc {
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
line-height: 1.4;
color: #252545;
}
</style>