index.vue 309 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. <tabbar :current="3"></tabbar>
  4. </view>
  5. </template>
  6. <script>
  7. import * as API from '@/apis/pagejs/index.js'
  8. import Tabbar from '@/components/Tabbar.vue'
  9. export default {
  10. components: {
  11. Tabbar
  12. },
  13. data() {
  14. return {
  15. };
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. </style>