zhongshujie
2025-08-08 401ed176c9f1bdd97ccdf827d9454b11a3891f79
1
2
3
4
5
6
7
8
9
10
11
12
13
<script setup lang="ts">
import { RouterView } from 'vue-router'
import { useRouter } from 'vue-router';
const route = useRouter();
 
 
</script>
 
<template>
  <RouterView />
</template>
 
<style></style>