index.vue 437 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <custom-tab-bar :activeValue="'index'" />
  4. </view>
  5. </template>
  6. <script>
  7. import env from '../../config/env.js'
  8. import $http from '@/utils/request.js'
  9. import CustomTabBar from '../../components/custom-tab-bar/custom-tab-bar.vue'
  10. export default {
  11. components: {
  12. CustomTabBar,
  13. },
  14. data() {
  15. return {
  16. };
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. </style>
  22. <style lang="scss" scoped>
  23. </style>