index.vue 243 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="page">
  3. <Tabbar :tabbarIndex="1"></Tabbar>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style scoped lang="less">
  17. .page{
  18. }
  19. </style>