mirror of
https://github.com/shuguangnet/uniapp.git
synced 2025-01-23 16:08:44 +08:00
26 lines
386 B
Vue
26 lines
386 B
Vue
|
<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>
|