19 lines
295 B
Vue
19 lines
295 B
Vue
<!-- LayoutBlankPage/index.vue -->
|
||
<script setup lang="ts">
|
||
</script>
|
||
|
||
<template>
|
||
<div class="layout-blank">
|
||
<!-- 完全空白,不包裹任何容器 -->
|
||
<router-view />
|
||
</div>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.layout-blank{
|
||
height: 100vh;
|
||
overflow: auto;
|
||
}
|
||
/* 无样式 */
|
||
</style>
|