freight-web/src/components/Title/index.vue

19 lines
294 B
Vue
Raw Normal View History

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;
font-size: 27rpx;
color: #000000;
}
</style>