freight-web/src/components/Title/index.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: 28rpx;
color: #000000;
}
</style>