Files
Yi.Framework/Yi.Ai.Vue3/src/layouts/LayoutBlankPage/index.vue

19 lines
295 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- 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>