mine.vue 343 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view>
  3. mine
  4. <canteenTabbar ref="mytabbar"
  5. current="2"></canteenTabbar>
  6. </view>
  7. </template>
  8. <script>
  9. import canteenTabbar from "../../../components/canteenTabbar.vue"
  10. export default {
  11. components: {
  12. canteenTabbar
  13. },
  14. data() {
  15. return {
  16. }
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>