2023-09-19 19:31:19 +08:00

28 lines
413 B
Vue

<template>
<view class="commFooter_content">
{{footerTips}}
</view>
</template>
<script>
export default {
name:'commFooter',
props :{
footerTips:{
type: String,
default:'到底啦,不要再划了~'
}
}
}
</script>
<style lang="scss">
.commFooter_content {
display: flex;
justify-content: center;
width: 100%;
font-size: 24rpx;
color: #999999;
line-height: 1;
}
</style>