27 lines
382 B
Vue
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>
|