Files
ylst-h5/src/layouts/index.vue
2025-03-03 09:20:13 +08:00

21 lines
295 B
Vue

<template>
<div class="common-layout">
<RouterView />
</div>
</template>
<script setup>
import { RouterView } from 'vue-router';
</script>
<style scoped lang="scss">
.common-layout {
height: calc(100vh);
background-color: #E9EEF3;
color: #333;
text-align: center;
}
</style>