学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
396 B

1 year ago
  1. <template>
  2. <view class="content">
  3. 我的
  4. <!-- <UserTab selectedIndex ='2'></UserTab> -->
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. onLoad() {
  14. console.log('我的页面')
  15. },
  16. onShow() {
  17. // uni.hideTabBar();
  18. },
  19. methods: {
  20. goPage() {}
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. .content {
  26. width: 100vw;
  27. height: 100%;
  28. }
  29. </style>