SmartBeehive/page_user/about.vue
2024-07-05 11:41:07 +08:00

38 lines
589 B
Vue

<template>
<view class="page">
<u-navbar is-back="false" :title="title" :border-bottom="false" :background="bgc" title-color='#000'
title-size='36' :title-bold='true' height='45' id="navbar">
</u-navbar>
<view class="">
{{title}}
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: " #F4FAF8",
},
title: "",
}
},
onLoad(option) {
this.title = option.tit
},
onShow() {
},
methods: {
}
}
</script>
<style lang="scss">
page {
background-color: #FAFDFD;
}
</style>