12345678910111213141516171819202122232425 |
- <template>
- <view class="tabPage" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
-
- <Tabbar :tabbarIndex="2"></Tabbar>
- </view>
- </template>
- <script>
- import Tabbar from '@/components/CusTabbar/index.vue'
- export default {
- components:{ Tabbar },
- data(){
- return {
-
- }
- },
- methods:{
-
- }
- }
- </script>
- <style scoped lang="less">
-
- </style>
|