19 lines
294 B
Vue
19 lines
294 B
Vue
![]() |
<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;
|
||
|
font-size: 27rpx;
|
||
|
color: #000000;
|
||
|
}
|
||
|
</style>
|