buddhism/pages/tj.vue
2025-08-14 11:22:53 +08:00

36 lines
537 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>