my.vue 390 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="tabPage" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <Tabbar :tabbarIndex="2"></Tabbar>
  4. </view>
  5. </template>
  6. <script>
  7. import Tabbar from '@/components/CusTabbar/index.vue'
  8. export default {
  9. components:{ Tabbar },
  10. data(){
  11. return {
  12. }
  13. },
  14. methods:{
  15. }
  16. }
  17. </script>
  18. <style scoped lang="less">
  19. </style>