1234567891011121314151617181920212223242526272829 |
- <template>
- <view>
- <custom-tab-bar :activeValue="'index'" />
- </view>
- </template>
- <script>
- import env from '../../config/env.js'
- import $http from '@/utils/request.js'
- import CustomTabBar from '../../components/custom-tab-bar/custom-tab-bar.vue'
- export default {
- components: {
- CustomTabBar,
- },
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss" scoped>
-
- </style>
- <style lang="scss" scoped>
-
- </style>
|