buddhism/pages/my.vue
2025-07-28 10:53:56 +08:00

33 lines
453 B
Vue

<template>
<view class="page">
<u-navbar :is-back="false" title="首页" :border-bottom="false" back-icon-color="000" :background="bgc" title-color='#fff' title-size='36'
height='36' id="navbar">
</u-navbar>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#8883f0",
},
}
},
methods: {
}
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
</style>