Files
a_long_vue/src/App.vue
2026-06-14 02:43:42 +08:00

19 lines
344 B
Vue

<template>
<router-view />
</template>
<script setup>
// 无需额外逻辑
</script>
<style>
html, body {
overflow: scroll; /* 强制显示滚动条,便于观察 */
-webkit-overflow-scrolling: touch; /* 平滑滚动 */
}
.layout {
min-height: 100vh; /* 确保高度至少为视口高度,产生纵向滚动 */
}
</style>