第一次提交:Vue3后台前端最新版本
This commit is contained in:
18
src/App.vue
Normal file
18
src/App.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<router-view />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
// 无需额外逻辑
|
||||
</script>
|
||||
<style>
|
||||
html, body {
|
||||
overflow: scroll; /* 强制显示滚动条,便于观察 */
|
||||
-webkit-overflow-scrolling: touch; /* 平滑滚动 */
|
||||
}
|
||||
.layout {
|
||||
min-height: 100vh; /* 确保高度至少为视口高度,产生纵向滚动 */
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user