1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| <template>
| <view class="tabbar-page">
| <view class="page-content">
| <slot></slot>
| </view>
| <custom-tabbar :current="currentTab" @change="onTabChange"></custom-tabbar>
| </view>
| </template>
|
| <script>
| import CustomTabbar from '@/components/custom-tabbar/custom-tabbar.vue'
|
| export default {
| components: {
| CustomTabbar
| },
| data() {
| return {
| currentTab: 0
| }
| },
| methods: {
| onTabChange(index) {
| this.currentTab = index
| }
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .tabbar-page {
| width: 100%;
| min-height: 100vh;
| background: #f8f8f8;
| }
|
| .page-content {
| width: 100%;
| min-height: 100vh;
| padding-bottom: 100rpx;
| }
| </style>
|
|