index.vue 328 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="content">
  3. <custom-tab-bar :current="1" />
  4. </view>
  5. </template>
  6. <script>
  7. import $api from '@/static/js/api.js'
  8. var that = ''
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. onLoad() {
  15. that = this
  16. },
  17. methods: {
  18. },
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. .content {}
  23. </style>