pupilHome.vue 432 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!-- 学生首页 -->
  2. <template>
  3. <view class="pupilHome">
  4. </view>
  5. </template>
  6. <script>
  7. import {
  8. tabBar
  9. } from '@/pages/component/tabBar.vue'
  10. export default {
  11. name: "pupilHome",
  12. components: {
  13. tabBar,
  14. },
  15. data() {
  16. return {
  17. }
  18. },
  19. onLoad() {
  20. },
  21. onShow() {
  22. },
  23. methods: {
  24. },
  25. onHide() {
  26. },
  27. onUnload() {
  28. }
  29. }
  30. </script>
  31. <style lang="stylus" scoped>
  32. .pupilHome {
  33. height: 100%;
  34. }
  35. </style>