buddhism/pages/tj.vue

33 lines
453 B
Vue
Raw Normal View History

2023-12-05 16:45:28 +08:00
<template>
2024-01-24 11:55:35 +08:00
<view class="page">
2025-07-28 10:53:56 +08:00
<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>
2023-12-05 16:45:28 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2025-07-28 10:53:56 +08:00
bgc: {
backgroundColor: "#8883f0",
2024-03-25 19:46:07 +08:00
},
2024-01-27 16:37:52 +08:00
2024-03-25 19:46:07 +08:00
2025-07-28 10:53:56 +08:00
}
2024-01-24 11:55:35 +08:00
},
2024-01-23 19:15:52 +08:00
methods: {
2024-03-25 19:46:07 +08:00
2024-01-23 19:15:52 +08:00
}
}
2023-12-05 16:45:28 +08:00
</script>
2024-01-24 11:55:35 +08:00
<style lang="scss">
page {
2025-07-28 10:53:56 +08:00
background-color: #fff;
2024-01-24 11:55:35 +08:00
}
2025-07-28 10:53:56 +08:00
2024-01-24 11:55:35 +08:00
</style>