Files
deShanXiao/frontEnd/src/App.vue

15 lines
212 B
Vue

<template>
<div class="view-content">
<router-view></router-view>
</div>
</template>
<script setup lang="ts">
</script>
<style scoped>
.view-content {
min-height: 100vh;
min-width: 100vw;
}
</style>