闫增涛
2025-04-14 2cac4a0f4ea0b1cf7bff4759fae8136c72792563
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
    <div class="contentPage">
        班级
    </div>
</template>
<script setup lang="ts">
import { useRouter, onBeforeRouteUpdate } from "vue-router";
import { ref, onMounted } from "vue";
const router = useRouter();
 
 
onMounted(() => {
})
 
</script>
 
<style lang="less">
 
 
</style>