zhongshujie
2024-08-07 6754eddf2b9d166e32c7bdcfffe09b75b8bb970b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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>