guanwang/src/App.vue
2026-01-07 18:02:53 +08:00

18 lines
228 B
Vue

<script setup lang="ts">
import { onMounted } from 'vue';
import { useRouter } from 'vue-router';
</script>
<template>
<router-view />
</template>
<style>
/* 全局样式 */
#app {
width: 100%;
height: 100%;
}
</style>