IPBS_V_Server_Web/src/App.vue
2026-03-07 10:57:13 +08:00

27 lines
382 B
Vue

<template>
<div class="MainBox">
<Home/>
</div>
</template>
<script setup>
import Home from "./components/Main/Home.vue";
import {onMounted} from "vue";
import {useRouter} from "vue-router";
onMounted(()=>{
const router = useRouter();
router.push('/UI_1');
});
</script>
<style scoped>
.MainBox{
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
}
</style>