2024-03-04 07:10:11 +00:00
|
|
|
<template>
|
|
|
|
<view class="title">
|
|
|
|
{{ props.title }}
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
const props = defineProps<{
|
|
|
|
title:string
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
.title {
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
font-weight: 500;
|
2024-03-14 03:14:12 +00:00
|
|
|
font-size: 28rpx;
|
2024-03-04 07:10:11 +00:00
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
</style>
|