123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!-- 学生首页 -->
- <template>
- <view class="pupilHome">
- </view>
- </template>
- <script>
- import {
- tabBar
- } from '@/pages/component/tabBar.vue'
- export default {
- name: "pupilHome",
- components: {
- tabBar,
- },
- data() {
- return {
- }
- },
- onLoad() {
- },
- onShow() {
- },
- methods: {
- },
- onHide() {
- },
- onUnload() {
- }
- }
- </script>
- <style lang="stylus" scoped>
- .pupilHome {
- height: 100%;
- }
- </style>
|