18 lines
228 B
Vue
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>
|