uniapp/components/common-title/common-title.vue

26 lines
386 B
Vue
Raw Permalink Normal View History

2024-09-21 23:48:04 +08:00
<template>
<view class="common-title">
<view class="name">
<slot name="name"></slot>
</view>
<view class="custom">
<slot name="custom"></slot>
</view>
</view>
</template>
<script setup>
</script>
<style lang="scss" scoped>
.common-title{
display: flex;
justify-content: space-between;
align-items: center;
padding:0 30rpx;
.name{
font-size: 40rpx
}
}
</style>